crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianDebugLib/PluginAPI/Symbol/DbgEngineSymbolStub.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 using System;
       
    18 using System.Collections.Generic;
       
    19 using System.Text;
       
    20 using SymbianUtils;
       
    21 using SymbianStructuresLib.Debug.Symbols;
       
    22 using SymbianDebugLib.Engine;
       
    23 using SymbianDebugLib.Entity;
       
    24 
       
    25 namespace SymbianDebugLib.PluginAPI.Types.Symbol
       
    26 {
       
    27     internal class DbgEngineSymbolStub : DbgEngineSymbol
       
    28     {
       
    29         #region Constructors
       
    30         public DbgEngineSymbolStub( DbgEngine aEngine )
       
    31             : base( aEngine )
       
    32         {
       
    33         }
       
    34         #endregion
       
    35 
       
    36         #region From DbgEngineSymbol
       
    37         public override bool IsReady
       
    38         {
       
    39             get { return false; }
       
    40         }
       
    41 
       
    42         public override string Name
       
    43         {
       
    44             get { return "Symbol Engine Stub"; }
       
    45         }
       
    46 
       
    47         public override bool IsSupported( string aFileName, out string aType )
       
    48         {
       
    49             aType = string.Empty;
       
    50             return false;
       
    51         }
       
    52 
       
    53         public override DbgPluginPrimer CreatePrimer()
       
    54         {
       
    55             throw new NotImplementedException();
       
    56         }
       
    57 
       
    58         protected override DbgPluginView DoCreateView( string aName )
       
    59         {
       
    60             throw new NotImplementedException();
       
    61         }
       
    62 
       
    63         protected override void DoClear()
       
    64         {
       
    65         }
       
    66         #endregion
       
    67 
       
    68         #region Properties
       
    69         #endregion
       
    70 
       
    71         #region Internal methods
       
    72         #endregion
       
    73 
       
    74         #region Data members
       
    75         #endregion
       
    76     }
       
    77 }