crashanalysercmd/Libraries/Engine/CrashDebuggerLib/Structures/Common/CrashDebuggerAware.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.Collections.Generic;
       
    20 using System.Text;
       
    21 
       
    22 namespace CrashDebuggerLib.Structures.Common
       
    23 {
       
    24     public class CrashDebuggerAware
       
    25     {
       
    26         #region Constructors
       
    27         public CrashDebuggerAware( CrashDebuggerInfo aCrashDebugger )
       
    28         {
       
    29             iCrashDebugger = aCrashDebugger;
       
    30         }
       
    31         #endregion
       
    32 
       
    33         #region API
       
    34         #endregion
       
    35 
       
    36         #region Properties
       
    37         public CrashDebuggerInfo CrashDebugger
       
    38         {
       
    39             get { return iCrashDebugger; }
       
    40         }
       
    41         #endregion
       
    42 
       
    43         #region Internal methods
       
    44         #endregion
       
    45 
       
    46         #region Internal constants
       
    47         #endregion
       
    48 
       
    49         #region From System.Object
       
    50         public override string ToString()
       
    51         {
       
    52             return base.ToString();
       
    53         }
       
    54         #endregion
       
    55 
       
    56         #region Data members
       
    57         private readonly CrashDebuggerInfo iCrashDebugger;
       
    58         #endregion
       
    59     }
       
    60 }