A
AriZOnA
Hi!
I have the following scenario:
class QWidget
{}
class GeneratedClass : public QWidget
{}
class AbstractPanel
{
virtual void AbsMethod() = 0;
}
class MyClass : public GeneratedClass , AbstractPanel
{
void AbsMethod() {;} // impl
}
I have the QWidget pointer, how can I cast it so that I can
make a call to the AbsMethod implemented by MyClass ?
thanx a lot ...
bye
I have the following scenario:
class QWidget
{}
class GeneratedClass : public QWidget
{}
class AbstractPanel
{
virtual void AbsMethod() = 0;
}
class MyClass : public GeneratedClass , AbstractPanel
{
void AbsMethod() {;} // impl
}
I have the QWidget pointer, how can I cast it so that I can
make a call to the AbsMethod implemented by MyClass ?
thanx a lot ...
bye