sapi_sysinfo/tsrc/testing/tsysdevice/inc/tsysdevice.h
changeset 0 14df0fbfcc4e
equal deleted inserted replaced
-1:000000000000 0:14df0fbfcc4e
       
     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:   Tests device information
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef TSYSDEVICE_H
       
    22 #define TSYSDEVICE_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <StifLogger.h>
       
    26 #include <TestScripterInternal.h>
       
    27 #include <StifTestModule.h>
       
    28 
       
    29 #include "sysinfoservice.h"
       
    30 #include "sysinfo.h"
       
    31 
       
    32 // CONSTANTS
       
    33 //const ?type ?constant_var = ?constant;
       
    34 
       
    35 // MACROS
       
    36 //#define ?macro ?macro_def
       
    37 // Logging path
       
    38 _LIT( KtsysdeviceLogPath, "\\logs\\" ); 
       
    39 // Log file
       
    40 _LIT( KtsysdeviceLogFile, "tsysdevice_test.txt" ); 
       
    41 
       
    42 // FUNCTION PROTOTYPES
       
    43 //?type ?function_name(?arg_list);
       
    44 
       
    45 // FORWARD DECLARATIONS
       
    46 //class ?FORWARD_CLASSNAME;
       
    47 class Ctsysdevice;
       
    48 
       
    49 // DATA TYPES
       
    50 //enum ?declaration
       
    51 //typedef ?declaration
       
    52 //extern ?data_type;
       
    53 
       
    54 // CLASS DECLARATION
       
    55 
       
    56 /**
       
    57 *  Ctsysdevice test class for STIF Test Framework TestScripter.
       
    58 *  ?other_description_lines
       
    59 *
       
    60 *  @lib ?library
       
    61 *  @since ?Series60_version
       
    62 */
       
    63 NONSHARABLE_CLASS(Ctsysdevice) : public CScriptBase
       
    64     {
       
    65     public:  // Constructors and destructor
       
    66 
       
    67         /**
       
    68         * Two-phased constructor.
       
    69         */
       
    70         static Ctsysdevice* NewL( CTestModuleIf& aTestModuleIf );
       
    71 
       
    72         /**
       
    73         * Destructor.
       
    74         */
       
    75         virtual ~Ctsysdevice();
       
    76 
       
    77     public: // New functions
       
    78 
       
    79         /**
       
    80         * ?member_description.
       
    81         * @since ?Series60_version
       
    82         * @param ?arg1 ?description
       
    83         * @return ?description
       
    84         */
       
    85         //?type ?member_function( ?type ?arg1 );
       
    86 
       
    87     public: // Functions from base classes
       
    88 
       
    89         /**
       
    90         * From CScriptBase Runs a script line.
       
    91         * @since ?Series60_version
       
    92         * @param aItem Script line containing method name and parameters
       
    93         * @return Symbian OS error code
       
    94         */
       
    95         virtual TInt RunMethodL( CStifItemParser& aItem );
       
    96 
       
    97     protected:  // New functions
       
    98 
       
    99         /**
       
   100         * ?member_description.
       
   101         * @since ?Series60_version
       
   102         * @param ?arg1 ?description
       
   103         * @return ?description
       
   104         */
       
   105         //?type ?member_function( ?type ?arg1 );
       
   106 
       
   107     protected:  // Functions from base classes
       
   108 
       
   109         /**
       
   110         * From ?base_class ?member_description
       
   111         */
       
   112         //?type ?member_function();
       
   113 
       
   114     private:
       
   115 
       
   116         /**
       
   117         * C++ default constructor.
       
   118         */
       
   119         Ctsysdevice( CTestModuleIf& aTestModuleIf );
       
   120 
       
   121         /**
       
   122         * By default Symbian 2nd phase constructor is private.
       
   123         */
       
   124         void ConstructL();
       
   125 
       
   126         // Prohibit copy constructor if not deriving from CBase.
       
   127         // ?classname( const ?classname& );
       
   128         // Prohibit assigment operator if not deriving from CBase.
       
   129         // ?classname& operator=( const ?classname& );
       
   130 
       
   131         /**
       
   132         * Frees all resources allocated from test methods.
       
   133         * @since ?Series60_version
       
   134         */
       
   135         void Delete();
       
   136 
       
   137         /**
       
   138         * Test methods are listed below. 
       
   139         */
       
   140 
       
   141         /**
       
   142         * Example test method.
       
   143         * @since ?Series60_version
       
   144         * @param aItem Script line containing parameters.
       
   145         * @return Symbian OS error code.
       
   146         */
       
   147         virtual TInt FirmwareVersion( CStifItemParser& aItem );
       
   148         virtual TInt ProductType( CStifItemParser& aItem );
       
   149         virtual TInt Manufacturer( CStifItemParser& aItem );
       
   150         virtual TInt PhoneModel( CStifItemParser& aItem );
       
   151         virtual TInt IMEI( CStifItemParser& aItem );
       
   152         virtual TInt MachineID( CStifItemParser& aItem );
       
   153         virtual TInt PlatformVersion( CStifItemParser& aItem );
       
   154         virtual TInt SymbianOsVersion( CStifItemParser& aItem );
       
   155 
       
   156         //ADD NEW METHOD DEC HERE
       
   157 
       
   158     public:     // Data
       
   159         // ?one_line_short_description_of_data
       
   160         //?data_declaration;
       
   161 
       
   162     protected:  // Data
       
   163         // ?one_line_short_description_of_data
       
   164         //?data_declaration;
       
   165 
       
   166     private:    // Data
       
   167         
       
   168         // ?one_line_short_description_of_data
       
   169         //?data_declaration;
       
   170 
       
   171         // Reserved pointer for future extension
       
   172         //TAny* iReserved;
       
   173 
       
   174     public:     // Friend classes
       
   175         //?friend_class_declaration;
       
   176     protected:  // Friend classes
       
   177         //?friend_class_declaration;
       
   178     private:    // Friend classes
       
   179         //?friend_class_declaration;
       
   180 
       
   181     };
       
   182 
       
   183 #endif      // TSYSDEVICE_H
       
   184 
       
   185 // End of File