I have a main.cpp test.h and test.cpp> I am trying to pass my vector through so i can use it in test.cpp but i keep getting errors.
//file: main.cpp i
You should fix
test.h:5: error: âstringâ does not name a type
first, probably by using namespace std; and #include
using namespace std;
#include