crashanalysercmd/Libraries/Engine/CrashItemLib/Crash/Messages/CIMessageError.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.Text;
       
    19 using System.Collections.Generic;
       
    20 using CrashItemLib.Crash;
       
    21 using CrashItemLib.Crash.Base;
       
    22 using CrashItemLib.Crash.Processes;
       
    23 using CrashItemLib.Crash.Container;
       
    24 using SymbianUtils.Range;
       
    25 using SymbianStructuresLib.Uids;
       
    26 using SymbianUtils.DataBuffer;
       
    27 
       
    28 namespace CrashItemLib.Crash.Messages
       
    29 {
       
    30 	public class CIMessageError : CIMessage
       
    31     {
       
    32         #region Constructors
       
    33         public CIMessageError( CIContainer aContainer )
       
    34             : this( aContainer, string.Empty )
       
    35 		{
       
    36 		}
       
    37         
       
    38         public CIMessageError( CIContainer aContainer, string aTitle )
       
    39             : base( aContainer, aTitle )
       
    40         {
       
    41             Type = TType.ETypeError;
       
    42             Color = System.Drawing.Color.Red;
       
    43         }
       
    44         #endregion
       
    45 
       
    46         #region API
       
    47         #endregion
       
    48 
       
    49         #region Properties
       
    50         #endregion
       
    51 
       
    52         #region Internal methods
       
    53         #endregion
       
    54 
       
    55         #region From CIMessage
       
    56         #endregion
       
    57 
       
    58         #region Data members
       
    59         #endregion
       
    60     }
       
    61 }