locsrv_plat/map_and_navigation_provider_discovery_api/tsrc/inc/testmnproviderfinder.h
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: Provides testing of MnProviderFinder class methods
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef TESTMNNPROVIDERFINDER_H
       
    21 #define TESTMNNPROVIDERFINDER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <StifLogger.h>
       
    25 #include <TestScripterInternal.h>
       
    26 #include <StifTestModule.h>
       
    27 
       
    28 
       
    29 // CLASS 
       
    30 
       
    31 class TestMnProviderFinder
       
    32 	{
       
    33 	public:	//Public constructor of class
       
    34 	
       
    35 		/**
       
    36 		*
       
    37 		*/
       
    38 		TestMnProviderFinder(CStifLogger* aLog);
       
    39 		
       
    40 		static TestMnProviderFinder* NewL(CStifLogger* aLog);
       
    41 		
       
    42 		void ConstructL();
       
    43 		
       
    44 		~TestMnProviderFinder();
       
    45 		
       
    46 	public:	//Public methods
       
    47 		
       
    48 	public:	//Public methods
       
    49 	
       
    50 		/**
       
    51 		*
       
    52 		*/
       
    53 		TInt FindAllProvidersL( CStifItemParser& aItem );
       
    54 		
       
    55 		/**
       
    56 		*
       
    57 		*/
       
    58 		TInt FindSelectedProvidersL( CStifItemParser& aItem );
       
    59 		
       
    60 		/**
       
    61 		*
       
    62 		*/
       
    63 		//TInt NavigateToL( CStifItemParser& aItem );
       
    64 		
       
    65 		/**
       
    66 		*
       
    67 		*/
       
    68 		//TInt SetExitObserverL( CStifItemParser& aItem );
       
    69 		
       
    70 		/**
       
    71 		*
       
    72 		*/
       
    73 		//TInt RemoveExitObserverL( CStifItemParser& aItem );
       
    74 		
       
    75 				
       
    76 	private:
       
    77 		
       
    78 		// Private members
       
    79 		CStifLogger* iLog;	//Log		
       
    80 	};
       
    81 	
       
    82 #endif // TESTMNNPROVIDERFINDER_H
       
    83