S
seema
I am new to C++ programming, can somebody explain what is this
me_xx is it a type name or instantiation of class Final. And also
how to use me_xx ?
struct IViewObjectEx
{
public:
void solv()
{
}
};
class XViewObject : public IViewObjectEx {
public:
virtual void Draw()=0;
};
class Final: public XViewObject
{
public :
void Draw(){
cout <<"Drawing thru Draw()"<<endl;
}
} me_xx;
int main(){
Final pre;
}
Thanks in advance,
Seema
me_xx is it a type name or instantiation of class Final. And also
how to use me_xx ?
struct IViewObjectEx
{
public:
void solv()
{
}
};
class XViewObject : public IViewObjectEx {
public:
virtual void Draw()=0;
};
class Final: public XViewObject
{
public :
void Draw(){
cout <<"Drawing thru Draw()"<<endl;
}
} me_xx;
int main(){
Final pre;
}
Thanks in advance,
Seema