i'm trying to write my c++ program in different files, but I can't seem to get it to work. can someone help me?
separate.cpp
#include "separate.h"
#include <iostream>
void Separate() {
cout << "text";
}
separate.h
#include <string>
using namespace std;
class OneLine {
    Separate();
private:
    string vari;
};
main.cpp
#include "separate.cpp"
#include <iostream>
using namespace std;
int main () {
    Separate s;
    s();
return 0;
}
 
     
     
    