On 04/10/2007, john <[EMAIL PROTECTED]> wrote:
> #ifndef TEST
> #define TEST
>
> class test {
> string name;
>
> public:
> test();
> ~test();
> void entername ( void );
> }
> #endif
insert the ; at end of class declaration ..
class test { };
cod
