c:\mydocuments\programming\c++\camera\clight.h(12) : error C2059: syntax error : 'constant'
what the heck does this mean??
pointing at first line of my CLIGHT class declaration
which is derived from object class. I have another class derived from object called camera and it is the same as CLIGHT and I don't get the error!!! Can't I create multiple derived class from the same one?
Thanks for your help
what the heck does this mean??
pointing at first line of my CLIGHT class declaration
Code:
#ifndef CLightH
#define CLightH
class CLIGHT : public OBJECT
{
public:
CLIGHT();
~CLIGHT();
GLvoid Reset();
GLvoid Update();
GLvoid Apply();
};
#endif
which is derived from object class. I have another class derived from object called camera and it is the same as CLIGHT and I don't get the error!!! Can't I create multiple derived class from the same one?
Thanks for your help