Hi, why would this not work? (example)
fileA.h:
// declare the function
void methodA();
fileA.cpp:
// define the function
void methodA(){};
fileX.cpp:
include "fileA.h"
// call it
methodA(); <--linker error, can't find the symbol
All my headers have the #ifndef guard.
Thanks!