locationsystemui/locationsysui/locblidsatelliteinfo/stub/CSatelliteInfoUI.cpp
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     1 /*
       
     2 * Copyright (c) 2005 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:  Implements interface for CSatelliteInfoUI Stub
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <CSatelliteInfoUI.h>
       
    21 
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ==============================
       
    24 // ----------------------------------------------------------------------------
       
    25 // CSatelliteInfoUI::NewL
       
    26 // Two-phased constructor.
       
    27 // ----------------------------------------------------------------------------
       
    28 //
       
    29 EXPORT_C CSatelliteInfoUI* CSatelliteInfoUI::NewL()
       
    30     {
       
    31     CSatelliteInfoUI* self = new( ELeave ) CSatelliteInfoUI;
       
    32     CleanupStack::PushL( self );
       
    33     self->ConstructL();
       
    34     CleanupStack::Pop(); // self
       
    35     return self;
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------
       
    39 // CSatelliteInfoUI::ConstructL
       
    40 // ---------------------------------------------------------
       
    41 //
       
    42 void CSatelliteInfoUI::ConstructL()
       
    43     {    
       
    44     
       
    45     }
       
    46 
       
    47 // ----------------------------------------------------------------------------
       
    48 // CSatelliteInfoUI::CSatelliteInfoUI
       
    49 // C++ default constructor can NOT contain any code, that
       
    50 // might leave.
       
    51 // ----------------------------------------------------------------------------
       
    52 //
       
    53 CSatelliteInfoUI::CSatelliteInfoUI()
       
    54     {
       
    55     }
       
    56 
       
    57 // ---------------------------------------------------------
       
    58 // CSatelliteInfoUI::~CSatelliteInfoUI
       
    59 // ---------------------------------------------------------
       
    60 //
       
    61 EXPORT_C CSatelliteInfoUI::~CSatelliteInfoUI()
       
    62     {
       
    63     
       
    64     }
       
    65 
       
    66 // ---------------------------------------------------------
       
    67 // CSatelliteInfoUI::ExecuteLD
       
    68 // ---------------------------------------------------------
       
    69 //                       
       
    70 EXPORT_C TInt CSatelliteInfoUI::ExecuteLD( const TDesC& /*aNameOfRule*/ )
       
    71     {
       
    72     User::Leave(KErrNotSupported);
       
    73     return 0;
       
    74     }
       
    75 
       
    76 // ----------------------------------------------------------------------------
       
    77 // CSatelliteInfoUI::HandleForegroundEventL
       
    78 // ----------------------------------------------------------------------------
       
    79 //
       
    80 EXPORT_C void CSatelliteInfoUI::HandleForegroundEventL(TBool /*aForeground*/)
       
    81     {
       
    82     User::Leave(KErrNotSupported);
       
    83     }
       
    84 
       
    85 // ----------------------------------------------------------------------------
       
    86 // CSatelliteInfoUI::SetLaunchView
       
    87 // ----------------------------------------------------------------------------
       
    88 //
       
    89 EXPORT_C void CSatelliteInfoUI::SetLaunchView(TSatelliteView /*aLaunchView*/)
       
    90 	{
       
    91 	
       
    92 	}
       
    93 // End of File