locationsystemui/locationsysui/locverifier/inc/lpdverifiersettinglauncher.h
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     1 /*
       
     2 * Copyright (c) 2009 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:  Responsible for launching SUPL session details
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef LPDVERIFIERSETTINGSLAUNCHER_H
       
    19 #define LPDVERIFIERSETTINGSLAUNCHER_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <e32base.h>
       
    23 #include <locsettingsuiclient.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 /**
       
    27 *  CLpdVerifierSettingsLauncher class
       
    28 *  This class is a wrapper for launching Position settings - SUPL session details
       
    29 */
       
    30 class CLpdVerifierSettingsLauncher : public CActive
       
    31 	{
       
    32 	private : // Constructors and destructor
       
    33 	      /**
       
    34 	       * C++ default constructor.
       
    35 	       */
       
    36 	    CLpdVerifierSettingsLauncher();
       
    37 	      
       
    38 	public:
       
    39 	      /**
       
    40 	       * Destructor.
       
    41 	       */
       
    42 	      ~CLpdVerifierSettingsLauncher();		
       
    43 	
       
    44 	public:	
       
    45 		/**
       
    46          * Two-phased constructor.
       
    47          *
       
    48          */
       
    49 	     static CLpdVerifierSettingsLauncher* NewL();
       
    50 			      
       
    51 	private: 
       
    52 		 /**
       
    53           * Second phase of construction.
       
    54           */
       
    55 	      void ConstructL();
       
    56 	      
       
    57 	public: // new functions
       
    58 	      void LaunchL( TInt aSessionId );	      
       
    59 	      	      
       
    60 	protected: // from CActive
       
    61 	      void RunL();
       
    62 	      
       
    63 	      void DoCancel();
       
    64 	      
       
    65 	      void CancelRequest();
       
    66 	      
       
    67 	private:
       
    68 	    // Pointer to Location setings client library
       
    69         CLocSettingsUiClient*       iClientLibrary;
       
    70         
       
    71         // Launch parameters
       
    72         HBufC*       iLaunchParams;
       
    73 	};
       
    74 	
       
    75 #endif // LPDVERIFIERSETTINGSLAUNCHER_H
       
    76 
       
    77 // End of file