crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianETMLib/ETB/Engine/ETMEngine.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     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: 
       
    15 *
       
    16 */
       
    17 
       
    18 using System;
       
    19 using System.Collections.Generic;
       
    20 using System.Text;
       
    21 using SymbianETMLib.Common.Buffer;
       
    22 using SymbianETMLib.Common.State;
       
    23 using SymbianETMLib.Common.Config;
       
    24 using SymbianETMLib.Common.Utilities;
       
    25 using SymbianETMLib.Common.Types;
       
    26 using SymbianETMLib.Common.Engine;
       
    27 using SymbianETMLib.ETB.Config;
       
    28 using SymbianETMLib.ETB.Buffer;
       
    29 
       
    30 namespace SymbianETMLib.ETB.Engine
       
    31 {
       
    32     public class ETBEngine : ETEngineBase
       
    33     {
       
    34         #region Constructors
       
    35         public ETBEngine( ETBBuffer aBuffer, ETConfigBase aConfig )
       
    36             : base( aBuffer, aConfig )
       
    37         {
       
    38         }
       
    39         #endregion
       
    40 
       
    41         #region API
       
    42         #endregion
       
    43 
       
    44         #region Properties
       
    45         public new ETBBuffer Buffer
       
    46         {
       
    47             get { return base.Buffer as ETBBuffer; }
       
    48         }
       
    49 
       
    50         public new ETBConfig Config
       
    51         {
       
    52             get { return base.Config as ETBConfig; }
       
    53         }
       
    54         #endregion
       
    55 
       
    56         #region From System.Object
       
    57         #endregion
       
    58 
       
    59         #region Data members
       
    60         #endregion
       
    61     }
       
    62 }