Hi folks:
I'm having trouble with the follow:
Compiler: BC++ 4.52
error message: Declaration syntax error. Line 3.
This is an abstract class. Due to the error nobody can't inherit from CControl
Take a look and tell me if you can find something wrong.
Thank in advance
Amilkar
************************************
file: CControl.h
************************************
#ifndef CCONTROL
#define CCONTROL
class CControl //Line 3. Here is where I'm getting the error.
{
public:
virtual void Show() = 0;
virtual char *Get_Class_Name() = 0;
virtual void Set_Visible(bool Show_Wind) = 0;
virtual bool Get_Visible() = 0;
static void *pWind;
};
#endif
*********************************
f
ile:
CControl.cpp
*********************************
#include "CControl.h"
void *CControl::pWind = 0;
*********************************
To unsubscribe, send a blank message to <mailto:[EMAIL PROTECTED]>.
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/c-prog/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
