I\'m attempting to link my .cpp implementation file with my header file - I get this error message from my mac terminal -
rowlandev:playground rowlandev$ g++ ma
The link error says that the linked cannot find the constructor. The constructor is not in main.cpp, it is in your other file, which is unnamed in your example. Try putting all of it in a single cpp file to get it working.