Hello I\'m writing a little project in c++ where I would like to have some classes that does some work, I wrote the interfaces and the implementation of the classes.
The
public: method1(int arg1);
You are missing the return type for method1. Did you mean something like
int method1(int arg1);