gssettingsuis/Gs/gslauncher/src/GSLauncher.cpp
branchGCC_SURGE
changeset 45 f48d04161a92
parent 27 572294aa6075
parent 43 3341fe7c643a
equal deleted inserted replaced
27:572294aa6075 45:f48d04161a92
     1 /*
       
     2 * Copyright (c) 2007-2008 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:  Launches GS views.
       
    15 *
       
    16 */
       
    17 
       
    18 #include <gslauncher.h>
       
    19 
       
    20 
       
    21 // ======== MEMBER FUNCTIONS ========
       
    22 // ---------------------------------------------------------------------------
       
    23 // description_if_needed
       
    24 // ---------------------------------------------------------------------------
       
    25 //
       
    26 CGSLauncher::CGSLauncher()
       
    27 	{
       
    28 	}
       
    29 
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // description_if_needed
       
    33 // ---------------------------------------------------------------------------
       
    34 //
       
    35 void CGSLauncher::ConstructL()
       
    36 	{
       
    37 	//code
       
    38 	}
       
    39 	
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // description_if_needed
       
    43 // ---------------------------------------------------------------------------
       
    44 //
       
    45 EXPORT_C CGSLauncher* CGSLauncher::NewL()
       
    46   {
       
    47   return NULL;
       
    48   }
       
    49 
       
    50 // ---------------------------------------------------------------------------
       
    51 // description_if_needed
       
    52 // ---------------------------------------------------------------------------
       
    53 //
       
    54 EXPORT_C CGSLauncher* CGSLauncher::NewLC()
       
    55   {
       
    56   return NULL;
       
    57   }
       
    58 
       
    59 
       
    60 // ---------------------------------------------------------------------------
       
    61 // description_if_needed
       
    62 // ---------------------------------------------------------------------------
       
    63 //
       
    64 CGSLauncher::~CGSLauncher()
       
    65     {
       
    66     }
       
    67 
       
    68 // ---------------------------------------------------------------------------
       
    69 // implementation_description
       
    70 // ---------------------------------------------------------------------------
       
    71 //
       
    72 EXPORT_C void CGSLauncher::LaunchGSViewL( const TUid /*aTarget*/, 
       
    73                                           const TUid /*aCustomMessageId*/,
       
    74                                           const TDesC8& /*aCustomMessage*/ )
       
    75     {
       
    76     }
       
    77 
       
    78