Hi all,
I got a problem about TimerTask,it can't work,Here is my code:
class TimerTest1 : public TimerTask{
void run(){
cout<<"test timer"<<endl;
}
};
Timer timer;
AutoPtr<TimerTest1> t;
timer.schedule(t, 10, 1000);
I can't found the problem about it,any one can help me,thank's





