#include <string>
using namespace std;
class Flag {
private:
string *FlagColorOne;
string *FlagColorTwo;
public:
Flag();
SetFlagColors();
GetFlagColors();
~Flag();
}
so this is my code, and it keeps on telling me that it has an 'unexpected end of file error'
...
it used to be:
#include <string>
using namespace std;
class Flag {
private:
string *FlagColorOne;
string *FlagColorTwo;
public:
Flag();
SetFlagColors();
GetFlagColors();
~Flag();
protected:
}
I took out the protected part, and I tried taking out the closing bracket, but I still have the same error...and programming gurus' help me?

Sign In
Register
Help




MultiQuote

