crashanalysercmd/UI/Plugins/CAPluginRawStack/Plugin/CAPluginRawStack.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2004-2008 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.Text;
       
    20 using System.IO;
       
    21 using System.Collections.Generic;
       
    22 using System.Threading;
       
    23 using CrashAnalyserEngine.Plugins;
       
    24 using CrashAnalyserEngine.Engine;
       
    25 using CrashAnalyserEngine.Interfaces;
       
    26 using SymbianUtils;
       
    27 using SymbianUtils.FileSystem.Utilities;
       
    28 using SymbianStackLib.Engine;
       
    29 
       
    30 namespace CAPRawStack.Plugin
       
    31 {
       
    32 	public class CAPluginRawStack : CAPlugin
       
    33 	{
       
    34 		#region Constructors
       
    35         public CAPluginRawStack( CAEngine aEngine )
       
    36             : base( aEngine, KPluginName )
       
    37 		{
       
    38             iStackEngine = new StackEngine( aEngine.DebugEngine );
       
    39 		}
       
    40 		#endregion
       
    41 
       
    42         #region Constants
       
    43         public const string KPluginName = "Call Stack Reconstructor";
       
    44         #endregion
       
    45 
       
    46 		#region API
       
    47         #endregion
       
    48 
       
    49         #region From CAPlugin
       
    50         public override CAPlugin.TType Type
       
    51         {
       
    52             get { return CAPlugin.TType.ETypeEngine; }
       
    53         }
       
    54         #endregion
       
    55 
       
    56 		#region Properties
       
    57         public StackEngine StackEngine
       
    58         {
       
    59             get { return iStackEngine; }
       
    60         }
       
    61 		#endregion
       
    62 
       
    63         #region Event handlers
       
    64         #endregion
       
    65 
       
    66         #region Internal methods
       
    67         #endregion
       
    68 
       
    69         #region Data members
       
    70         private StackEngine iStackEngine;
       
    71         #endregion
       
    72     }
       
    73 }