locationmanager/server/src/clocationservertimerhandler.cpp
changeset 54 a3cc46f37772
parent 36 aa5a574040a4
equal deleted inserted replaced
36:aa5a574040a4 54:a3cc46f37772
    24 // CLocationServerTimerHandler::CLocationServerTimerHandler
    24 // CLocationServerTimerHandler::CLocationServerTimerHandler
    25 // --------------------------------------------------------------------------
    25 // --------------------------------------------------------------------------
    26 //
    26 //
    27 CLocationServerTimerHandler::CLocationServerTimerHandler
    27 CLocationServerTimerHandler::CLocationServerTimerHandler
    28             (MLocationServerTimerObserver& aLocationServerTimerObserver):
    28             (MLocationServerTimerObserver& aLocationServerTimerObserver):
    29         CTimer(EPriorityStandard ),
    29         CTimer( EPriorityStandard ),
    30         iLocationServerTimerObserver(aLocationServerTimerObserver),
    30         iLocationServerTimerObserver(aLocationServerTimerObserver),
    31         iLocationServerTimerType(MLocationServerTimerObserver::ELocGeneralPurpose)
    31         iLocationServerTimerType(MLocationServerTimerObserver::ELocGeneralPurpose)
    32     {
    32     {
    33     }
    33     }
    34 
    34 
    51     {
    51     {
    52     CLocationServerTimerHandler* self = 
    52     CLocationServerTimerHandler* self = 
    53         new( ELeave ) CLocationServerTimerHandler(aLocationServerTimerObserver);
    53         new( ELeave ) CLocationServerTimerHandler(aLocationServerTimerObserver);
    54     CleanupStack::PushL( self );
    54     CleanupStack::PushL( self );
    55     self->ConstructL();
    55     self->ConstructL();
    56     CleanupStack::Pop();
    56     CleanupStack::Pop(); //self
    57     return self;
    57     return self;
    58     }
    58     }
    59 
    59 
    60 
    60 
    61 // --------------------------------------------------------------------------
    61 // --------------------------------------------------------------------------