class StripChartWindow : public PegDecoratedWindow
{
public:
StripChartWindow(const PegRect& Rect, const PEGUINT TitleId);
virtual ~StripChartWindow() {}
virtual PEGINT Message(const PegMessage& Mesg);
private:
PegStripChart* mpChart;
PegStripChart* mpChart2;
PEGUBYTE mID;
PEGUBYTE mSin;
PEGUBYTE mID2;
PEGUBYTE mSin2;
};
This is the part which is givin me errors as below...
error C2143: syntax error : missing ';' before '*'
error C2501: 'PegStripChart' : missing storage-class or type specifiers
error C2501: 'mpChart' : missing storage-class or type specifiers
error C2143: syntax error : missing ';' before '*'
error C2501: 'PegStripChart' : missing storage-class or type specifiers
error C2501: 'mpChart2' : missing storage-class or type specifiers
fatal error C1070: mismatched #if/#endif pair in file new.hpp'
Error executing cl.exe.