landmarksui/uicontrols/inc/CLmkLocSettingLauncher.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2002-2006 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:    LandmarksUi Content File -    Responsible for launching positioning settings
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef CLmkLocSettingsLauncher_H
       
    24 #define CLmkLocSettingsLauncher_H
       
    25 
       
    26 // INCLUDES
       
    27 #include <e32base.h>
       
    28 #include <locsettingsuiclient.h>
       
    29 
       
    30 // CLASS DECLARATION
       
    31 /**
       
    32 *  CLmkLocSettingsLauncher class
       
    33 *  This class is a wrapper for launching Position settings
       
    34 */
       
    35 class CLmkLocSettingsLauncher : public CActive
       
    36 	{
       
    37 	private : // Constructors and destructor
       
    38 	      /**
       
    39 	       * C++ default constructor.
       
    40 	       */
       
    41 	      CLmkLocSettingsLauncher();
       
    42 
       
    43 	public:
       
    44 	      /**
       
    45 	       * Destructor.
       
    46 	       */
       
    47 	      ~CLmkLocSettingsLauncher();
       
    48 
       
    49 	public:
       
    50 		/**
       
    51          * Two-phased constructor.
       
    52          *
       
    53          */
       
    54 	     static CLmkLocSettingsLauncher* NewL();
       
    55 
       
    56 	private:
       
    57 		 /**
       
    58           * Second phase of construction.
       
    59           */
       
    60 	      void ConstructL();
       
    61 
       
    62 	public: // new functions
       
    63 	      void LaunchL();
       
    64 
       
    65 	protected: // from CActive
       
    66 	      void RunL();
       
    67 
       
    68 	      void DoCancel();
       
    69 
       
    70 	      void CancelRequest();
       
    71 
       
    72 	private:
       
    73 	    // Pointer to Location setings client library
       
    74         CLocSettingsUiClient*       iClientLibrary;
       
    75 	};
       
    76 
       
    77 #endif // CLmkLocSettingsLauncher_H
       
    78 
       
    79 // End of file