![]() | 1 | initial version |
Another cause for this can be that you forgot the namespace in your .cpp file. For example, if you had this in the header:
bool parseTrajectory();
And the same in your .cpp file:
bool parseTrajectory();
--> Should be bool ClassName::parseTrajectory();
![]() | 2 | No.2 Revision |
Another cause for this can could be that you forgot the namespace in your .cpp file. For example, if you had this in the header:
bool parseTrajectory();
And the same in your .cpp file:
bool parseTrajectory();
--> Should be bool ClassName::parseTrajectory();