serviceproviders/sapi_contacts_vpbk/tsrc/testing/tcontact_getIds/src/tcontact_getIds.cpp
changeset 22 fc9cf246af83
child 33 50974a8b132e
equal deleted inserted replaced
19:989d2f495d90 22:fc9cf246af83
       
     1 /*
       
     2 * Copyright (c) 2002 - 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 the License "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:   ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <Stiftestinterface.h>
       
    23 #include "tcontact_getIds.h"
       
    24 
       
    25 // EXTERNAL DATA STRUCTURES
       
    26 //extern  ?external_data;
       
    27 
       
    28 // EXTERNAL FUNCTION PROTOTYPES  
       
    29 //extern ?external_function( ?arg_type,?arg_type );
       
    30 
       
    31 // CONSTANTS
       
    32 //const ?type ?constant_var = ?constant;
       
    33 
       
    34 // MACROS
       
    35 //#define ?macro ?macro_def
       
    36 
       
    37 // LOCAL CONSTANTS AND MACROS
       
    38 //const ?type ?constant_var = ?constant;
       
    39 //#define ?macro_name ?macro_def
       
    40 
       
    41 // MODULE DATA STRUCTURES
       
    42 //enum ?declaration
       
    43 //typedef ?declaration
       
    44 
       
    45 // LOCAL FUNCTION PROTOTYPES
       
    46 //?type ?function_name( ?arg_type, ?arg_type );
       
    47 
       
    48 // FORWARD DECLARATIONS
       
    49 //class ?FORWARD_CLASSNAME;
       
    50 
       
    51 // ============================= LOCAL FUNCTIONS ===============================
       
    52 
       
    53 // -----------------------------------------------------------------------------
       
    54 // ?function_name ?description.
       
    55 // ?description
       
    56 // Returns: ?value_1: ?description
       
    57 //          ?value_n: ?description_line1
       
    58 //                    ?description_line2
       
    59 // -----------------------------------------------------------------------------
       
    60 //
       
    61 /*
       
    62 ?type ?function_name(
       
    63     ?arg_type arg,  // ?description
       
    64     ?arg_type arg)  // ?description
       
    65     {
       
    66 
       
    67     ?code  // ?comment
       
    68 
       
    69     // ?comment
       
    70     ?code
       
    71     }
       
    72 */
       
    73 
       
    74 // ============================ MEMBER FUNCTIONS ===============================
       
    75 
       
    76 // -----------------------------------------------------------------------------
       
    77 // Ctcontactgetids::Ctcontactgetids
       
    78 // C++ default constructor can NOT contain any code, that
       
    79 // might leave.
       
    80 // -----------------------------------------------------------------------------
       
    81 //
       
    82 Ctcontactgetids::Ctcontactgetids( 
       
    83     CTestModuleIf& aTestModuleIf ):
       
    84         CScriptBase( aTestModuleIf )
       
    85     {
       
    86     }
       
    87 
       
    88 // -----------------------------------------------------------------------------
       
    89 // Ctcontactgetids::ConstructL
       
    90 // Symbian 2nd phase constructor can leave.
       
    91 // -----------------------------------------------------------------------------
       
    92 //
       
    93 void Ctcontactgetids::ConstructL()
       
    94     {
       
    95  /*   iLog = CStifLogger::NewL( KtmanualcontactsLogPath, 
       
    96                           KtmanualcontactsLogFile,
       
    97                           CStifLogger::ETxt,
       
    98                           CStifLogger::EFile,
       
    99                           EFalse );*/
       
   100 
       
   101   
       
   102  //    icontactservice=CContactService::NewL();
       
   103                             
       
   104      //icallback=new(ELeave) CContactCallback;
       
   105 
       
   106     }
       
   107 
       
   108 // -----------------------------------------------------------------------------
       
   109 // Ctcontactgetids::NewL
       
   110 // Two-phased constructor.
       
   111 // -----------------------------------------------------------------------------
       
   112 //
       
   113 Ctcontactgetids* Ctcontactgetids::NewL( 
       
   114     CTestModuleIf& aTestModuleIf )
       
   115     {
       
   116     Ctcontactgetids* self = new (ELeave) Ctcontactgetids( aTestModuleIf );
       
   117 
       
   118     CleanupStack::PushL( self );
       
   119     self->ConstructL();
       
   120     CleanupStack::Pop();
       
   121 
       
   122     return self;
       
   123 
       
   124     }
       
   125 
       
   126 // Destructor
       
   127 Ctcontactgetids::~Ctcontactgetids()
       
   128     { 
       
   129 
       
   130    // Delete resources allocated from test methods
       
   131     Delete();
       
   132    // delete icallback;
       
   133    // delete icontactservice;
       
   134     // Delete logger
       
   135    
       
   136     //delete iLog; 
       
   137     }
       
   138 
       
   139 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   140 
       
   141 // -----------------------------------------------------------------------------
       
   142 // LibEntryL is a polymorphic Dll entry point.
       
   143 // Returns: CScriptBase: New CScriptBase derived object
       
   144 // -----------------------------------------------------------------------------
       
   145 //
       
   146 EXPORT_C CScriptBase* LibEntryL( 
       
   147     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   148     {
       
   149 
       
   150     return ( CScriptBase* ) Ctcontactgetids::NewL( aTestModuleIf );
       
   151 
       
   152     }
       
   153 
       
   154 
       
   155 //  End of File