timer_generic_epoc.cpp

Go to the documentation of this file.
00001 // generated code -- do not edit
00002 
00003 #include "timer_generic_epoc.h"
00004 
00005 class CTimerAo;
00006 
00007 CTimerAo *CTimerAo::NewLC(MTimerObserver &aInterface, TInt aPriority)
00008 {
00009   CTimerAo *object = new (ELeave) CTimerAo(aInterface, aPriority);
00010   CleanupStack::PushL(object);
00011   object->ConstructL();
00012   return object;
00013 }
00014 
00015 CTimerAo *CTimerAo::NewL(MTimerObserver &aInterface, TInt aPriority)
00016 {
00017   CTimerAo *object = NewLC(aInterface, aPriority);
00018   CleanupStack::Pop();
00019   return object;
00020 }
00021 
00022 CTimerAo::CTimerAo(MTimerObserver &aInterface, TInt aPriority) : CTimer(aPriority), iInterface(aInterface)
00023 {
00024   CActiveScheduler::Add(this);
00025 }
00026 
00027 void CTimerAo::RunL()
00028 {
00029   iInterface.HandleTimerEvent(this, iStatus.Int());
00030 }

ContextLogger2—ContextLogger2 Logger Daemon Internals—Generated on Mon May 2 13:49:56 2011 by Doxygen 1.6.1