stif/TestServer/inc/TestServerCommon.h
branchRCL_3
changeset 59 8ad140f3dd41
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
       
     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: This file contains common data for Test Server.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TEST_SERVER_COMMON_H
       
    20 #define TEST_SERVER_COMMON_H
       
    21 
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 #include <e32base.h>
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 // MACROS
       
    30 
       
    31 // DATA TYPES
       
    32 
       
    33 // FUNCTION PROTOTYPES
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 
       
    37 // CLASS DECLARATION
       
    38 
       
    39 
       
    40 // DESCRIPTION
       
    41 
       
    42 // Server name
       
    43 _LIT( KTestServerName,"TestFrameworkServer" );
       
    44 
       
    45 // The server version.
       
    46 // A version must be specified when creating a session with the server.
       
    47 const TUint KTestServerMajorVersionNumber=0;
       
    48 const TUint KTestServerMinorVersionNumber=1;
       
    49 const TUint KTestServerBuildVersionNumber=1;
       
    50 
       
    51 
       
    52 #endif // TEST_SERVER_COMMON_H
       
    53 
       
    54 // End of File