i've an error while compiling

class Roman;
{ private:
string Roman_Number;
int Roman_Decimal;

public:
void Get_Info ( );
void Number_Convert ( );
void Info_Convert ( string );

};

// error C2447: '{' : missing function header (old-style formal list?)
closed account (z05DSL3A)
1
2
3
4
5
6
7
8
9
10
11
class Roman   //;
{ private:
string Roman_Number;
int Roman_Decimal;

public:
void Get_Info ( );
void Number_Convert ( );
void Info_Convert ( string );

};
Topic archived. No new replies allowed.