traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_common/inc/te_ctor.h
branchRCL_3
changeset 24 cc28652e0254
parent 23 26645d81f48d
child 25 047f208ea78f
equal deleted inserted replaced
23:26645d81f48d 24:cc28652e0254
     1 // Copyright (c) 2007-2010 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 "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef TE_CTOR
       
    17 #define TE_CTOR
       
    18 #include <e32std.h>
       
    19 #include "te_dataparameters.h"
       
    20 
       
    21 // dummy/unimportant value, only used for initialisation
       
    22 _LIT(KTestCtorString, "ABCDE" );
       
    23 
       
    24 class TTestCtor
       
    25     {
       
    26 public:
       
    27     TTestCtor( TUint32 aArg1, TUint32 aArg2 );
       
    28 
       
    29     TTestCtor( TUint32 aArg1 );
       
    30  
       
    31 private:
       
    32     // define arbitrary data members
       
    33     TUint32     iNum1;
       
    34     TUint32     iNum2;
       
    35     TBuf<10>    iStr;
       
    36     };
       
    37 
       
    38 #endif //TE_CTOR