stif/TestInterface/src/TestModuleParameters.cpp
branchRCL_3
changeset 59 8ad140f3dd41
parent 0 a03f92240627
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 module contains implementation of 
       
    15 * CTestModuleParamVer01 class and CTestModuleParamVer01 class 
       
    16 * member functions.
       
    17 *
       
    18 */
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <stifinternal/TestServerClient.h>
       
    22 
       
    23 // EXTERNAL DATA STRUCTURES
       
    24 
       
    25 // EXTERNAL FUNCTION PROTOTYPES  
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 // MACROS
       
    30 
       
    31 // LOCAL CONSTANTS AND MACROS
       
    32 
       
    33 // MODULE DATA STRUCTURES
       
    34 
       
    35 // LOCAL FUNCTION PROTOTYPES
       
    36 
       
    37 // FORWARD DECLARATIONS
       
    38 
       
    39 // ==================== LOCAL FUNCTIONS =======================================
       
    40 
       
    41 // None
       
    42 
       
    43 // ================= MEMBER FUNCTIONS =========================================
       
    44 
       
    45 /*
       
    46 -------------------------------------------------------------------------------
       
    47 
       
    48     Class: CTestModuleParamVer01
       
    49 
       
    50     Method: NewL
       
    51 
       
    52     Description: Creates CTestModuleParamVer01
       
    53       
       
    54     Parameters: None
       
    55 
       
    56     Return Values: CTestModuleParamVer01: CTestModuleParamVer01 object
       
    57 
       
    58     Errors/Exceptions: Leaves if memory allocation fails.
       
    59 
       
    60     Status: Proposal
       
    61     
       
    62 -------------------------------------------------------------------------------
       
    63 */
       
    64 EXPORT_C CTestModuleParamVer01* CTestModuleParamVer01::NewL()
       
    65     {
       
    66     CTestModuleParamVer01* self = new( ELeave ) CTestModuleParamVer01();
       
    67     CleanupStack::PushL( self );
       
    68     self->ConstructL();
       
    69     CleanupStack::Pop();
       
    70     return self;
       
    71 
       
    72     }
       
    73 
       
    74 /*
       
    75 -------------------------------------------------------------------------------
       
    76 
       
    77     Class: CTestModuleParamVer01
       
    78 
       
    79     Method: CTestModuleParamVer01
       
    80 
       
    81     Description: Constructor.
       
    82 
       
    83     Parameters: None
       
    84 
       
    85     Return Values: None
       
    86 
       
    87     Errors/Exceptions: None
       
    88 
       
    89     Status: Proposal
       
    90 
       
    91 -------------------------------------------------------------------------------
       
    92 */
       
    93 CTestModuleParamVer01::CTestModuleParamVer01()
       
    94     {
       
    95     iVersio = EVersio1;
       
    96 
       
    97     // Default test module thread heap and stack sizes.
       
    98     iTestThreadStackSize = KStackSize;
       
    99 	iTestThreadMinHeap = KTestThreadMinHeap;
       
   100 	iTestThreadMaxHeap = KTestThreadMaxHeap;
       
   101 
       
   102     }
       
   103 
       
   104 /*
       
   105 -------------------------------------------------------------------------------
       
   106 
       
   107     Class: CTestModuleParamVer01
       
   108 
       
   109     Method: ~CTestModuleParamVer01
       
   110 
       
   111     Description: Destructor.
       
   112 
       
   113     Parameters: None
       
   114 
       
   115     Return Values: None
       
   116 
       
   117     Errors/Exceptions: None
       
   118 
       
   119     Status: Proposal
       
   120     
       
   121 -------------------------------------------------------------------------------
       
   122 */
       
   123 EXPORT_C CTestModuleParamVer01::~CTestModuleParamVer01()
       
   124     {
       
   125     // None
       
   126 
       
   127     }
       
   128 
       
   129 /*
       
   130 -------------------------------------------------------------------------------
       
   131 
       
   132     Class: CTestModuleParamVer01
       
   133 
       
   134     Method: ConstructL
       
   135 
       
   136     Description: Second level constructor.
       
   137     
       
   138     Parameters: None
       
   139 
       
   140     Return Values: None
       
   141 
       
   142     Errors/Exceptions: None
       
   143 
       
   144     Status: Proposal
       
   145 
       
   146 -------------------------------------------------------------------------------
       
   147 */
       
   148 void CTestModuleParamVer01::ConstructL()
       
   149     {
       
   150 	// None
       
   151 
       
   152 	}
       
   153 
       
   154 // End of File