www.pudn.com > Example2D.rar > MTimingCall.h
/////////////////////////////////////////////////////////////////////////////// // // MTimingCall.h // // Copyright (c) 2003 Forum Nokia. All rights reserved. // // Technology developed by Rocket Science Oy Ltd // /////////////////////////////////////////////////////////////////////////////// #ifndef __MTIMINGCALL_H__ #define __MTIMINGCALL_H__ // INCLUDE FILES #include// CLASS DECLARATION /** * MTimingCall is a base class for the timing callback function. */ class MTimingCall { public: /** * Virtual destructor */ virtual ~MTimingCall() {} /** * Called from timer with defined interval */ virtual void TimingCall() = 0; }; #endif // End of file