Я знаю, что объект Moblet может наследовать класс timerlistener, но может ли Widget также наследовать класс TimerListener?
С моим кодом ниже я получаю ошибку addTimer былне заявлено в этой области :
class MyWidget : public QAButton, public TimerListener
// The class QAButton inherits from Label & PointerListener
{
MyWidget( MAUI::Widget *nParent, QAScreen *nDestinationScreen )
: Widget( 0, 0, 0, 0, nParent )
{
// Constructor:
}
void initAnimationTimer()
{
// Post:
addTimer( this, 20, 0 ); // Error here "`addTimer' was not declared in this scope"
}
void runTimerEvent()
{
// Post:
}
};