tracesrv/tracecompiler/internal/TraceCompiler_Test/TraceCompilerTester/inc/TraceCompilerTesterBasic.h
changeset 62 1c2bb2fc7c87
equal deleted inserted replaced
56:aa2539c91954 62:1c2bb2fc7c87
       
     1 /*
       
     2 * Copyright (c) 2010 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: 
       
    15 *
       
    16 */
       
    17 #ifndef __TRACECOMPILERTESTERBASIC_H__
       
    18 #define __TRACECOMPILERTESTERBASIC_H__
       
    19 
       
    20 
       
    21 // Include files
       
    22 #include <TraceCoreNotificationReceiver.h>
       
    23 #include "BigNumbers.inl"
       
    24 
       
    25 //  FORWARD DECLARATIONS
       
    26 
       
    27 /**
       
    28  * TraceCompilerTester application
       
    29  */
       
    30 NONSHARABLE_CLASS( DTraceCompilerTesterBasic ) : public DTraceCoreNotificationReceiver
       
    31     {
       
    32 public:
       
    33 
       
    34     /**
       
    35      * Constructor
       
    36      */
       
    37     DTraceCompilerTesterBasic();
       
    38     
       
    39     /**
       
    40      * Destructor
       
    41      */
       
    42     ~DTraceCompilerTesterBasic();
       
    43     
       
    44     /**
       
    45      * Second-phase constructor
       
    46      *
       
    47      * @param
       
    48      * @return System-wide error code
       
    49      */   
       
    50     TInt Construct();   
       
    51 
       
    52 public: // from DTraceCoreNotificationReceiver    
       
    53     
       
    54     /**
       
    55      * Callback function for Trace Activation
       
    56      * 
       
    57      * @param aComponentId
       
    58      * @param aGroupId
       
    59      * @return None          
       
    60      */
       
    61     void TraceActivated( TUint32 aComponentId, TUint16 aGroupId  );
       
    62     
       
    63     /**
       
    64      * Callback function for Trace Deactivation
       
    65      * 
       
    66      * @param aComponentId
       
    67      * @param aGroupId
       
    68      * @return None     
       
    69      */
       
    70     void TraceDeactivated( TUint32 aComponentId, TUint16 aGroupId  );
       
    71 
       
    72 private:
       
    73 
       
    74     };
       
    75 
       
    76 
       
    77 #endif
       
    78 
       
    79 // End of File