common/tools/ats/smoketest/lbs/internal/lbstestserver/inc/lbstestclient.h
changeset 748 e13acd883fbe
child 872 17498133d9ad
equal deleted inserted replaced
747:76f9aaeefbab 748:e13acd883fbe
       
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Client-side code for the Lbs test server
       
    15 // 
       
    16 //
       
    17 
       
    18 
       
    19 
       
    20 /**
       
    21  @file
       
    22  @internalTechnology
       
    23  @test
       
    24 */
       
    25 
       
    26 #ifndef LBSERVERCLIENT_H__
       
    27 #define LBSERVERCLIENT_H__
       
    28 
       
    29 
       
    30 class CLbsTestServerImpl;
       
    31 
       
    32 /** Class used to access the LBS test server.
       
    33 */
       
    34 NONSHARABLE_CLASS(CLbsTestServer) : public CBase
       
    35 	{
       
    36 public:
       
    37 	IMPORT_C static CLbsTestServer* NewL();
       
    38 	~CLbsTestServer();
       
    39 
       
    40 public:
       
    41 	IMPORT_C TInt StopLbsSystem();
       
    42 	IMPORT_C TInt StartLbsSystem();
       
    43 	IMPORT_C TInt ResetLbsSystem();
       
    44 
       
    45 protected:
       
    46 	CLbsTestServer();
       
    47 	void ConstructL();
       
    48 
       
    49 private:
       
    50 	CLbsTestServerImpl* iImpl;
       
    51 	
       
    52 	TUint8 iReserved[12]; // reserved for future use (to preserve BC).
       
    53 	};	
       
    54 	
       
    55 #endif // LBSERVERCLIENT_H__