ok I'm confused...
my class is empty, apart from an inclusion file, but has alot of errors that i cant understand.... Here's the .h file:
#ifndef creator
#define creator
#include "stdafx.h"
class creator
{
public:
creator();
~creator();
}
#endif
And here's the cpp file:
#include "creator.h"
creator::creator()
{
}
creator::~creator()
{
}
seeing as how there's nothing in it, why isnt it working?
There are more errors, like thinking '::' in my cpp file is a syntax error, or thinking that the '()' on the end of: creator::~creator() is "an illegal token on right side..."
Can anyone help me?
This is on visual studio 2008 express.