locationsystemui/locationsysui/locgpsindicatorplugin/src/locgpsindicatorplugin.cpp
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  GPS indicator plugin implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // USER INCLUDES
       
    20 #include "locgpsindicatorplugin.h"
       
    21 #include "locgpsindicatorpluginuids.h"
       
    22 
       
    23 // ======== MEMBER FUNCTIONS ========
       
    24 
       
    25 // ---------------------------------------------------------------------------
       
    26 // CLocGpsIndicatorPlugin::CLocGpsIndicatorPlugin
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 CLocGpsIndicatorPlugin::CLocGpsIndicatorPlugin()
       
    30     {
       
    31     }
       
    32 
       
    33 // ---------------------------------------------------------------------------
       
    34 // CLocGpsIndicatorPlugin::ConstructL
       
    35 // Symbian 2nd phase constructor can leave.
       
    36 // ---------------------------------------------------------------------------
       
    37 //
       
    38 void CLocGpsIndicatorPlugin::ConstructL()
       
    39     {
       
    40     }
       
    41 
       
    42 // -----------------------------------------------------------------------------
       
    43 // CLocGpsIndicatorPlugin::NewL
       
    44 // Two-phased constructor.
       
    45 // -----------------------------------------------------------------------------
       
    46 //
       
    47 CLocGpsIndicatorPlugin* CLocGpsIndicatorPlugin::NewL()
       
    48     {
       
    49     CLocGpsIndicatorPlugin* self = 
       
    50         new( ELeave ) CLocGpsIndicatorPlugin;
       
    51     CleanupStack::PushL( self );
       
    52     self->ConstructL();
       
    53     CleanupStack::Pop( self );
       
    54     return self;
       
    55     }
       
    56 
       
    57 
       
    58 // -----------------------------------------------------------------------------
       
    59 // Destructor
       
    60 // -----------------------------------------------------------------------------
       
    61 //
       
    62 CLocGpsIndicatorPlugin::~CLocGpsIndicatorPlugin()
       
    63     {
       
    64     }
       
    65 
       
    66 
       
    67 // ---------------------------------------------------------------------------
       
    68 // CLocGpsIndicatorPlugin::HandleIndicatorTapL
       
    69 // ---------------------------------------------------------------------------
       
    70 //
       
    71 void CLocGpsIndicatorPlugin::HandleIndicatorTapL( const TInt /*aUid*/ )
       
    72     {
       
    73     }
       
    74 
       
    75 // ---------------------------------------------------------------------------
       
    76 // CLocGpsIndicatorPlugin::ProcessCommandL
       
    77 // ---------------------------------------------------------------------------
       
    78 //
       
    79 void CLocGpsIndicatorPlugin::ProcessCommandL( TInt /* aCommandId */)
       
    80     {
       
    81     }
       
    82 // ---------------------------------------------------------------------------
       
    83 // CLocGpsIndicatorPlugin::HandlePreviewPopUpEventL
       
    84 // ---------------------------------------------------------------------------
       
    85 //
       
    86 void CLocGpsIndicatorPlugin::HandlePreviewPopUpEventL( CAknPreviewPopUpController* /*aController*/,
       
    87             										   TPreviewPopUpEvent /*aEvent*/ )
       
    88     {
       
    89     }
       
    90     
       
    91 //  End of File