crashanalysercmd/Libraries/Engine/CrashItemLib/PluginAPI/Source/CFFSource.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.IO;
       
    19 using System.Collections;
       
    20 using System.Collections.Generic;
       
    21 using System.Text;
       
    22 using SymbianUtils;
       
    23 using CrashItemLib.Crash.Source;
       
    24 
       
    25 namespace CrashItemLib.PluginAPI
       
    26 {
       
    27     /// <summary>
       
    28     /// Source with file format-specific extensions
       
    29     /// </summary>
       
    30     public abstract class CFFSource : CISource
       
    31     {
       
    32         #region Enumerations
       
    33         public enum TReaderOperationType
       
    34         {
       
    35             EReaderOpTypeNotSupported = 0,
       
    36             EReaderOpTypeNative,
       
    37             EReaderOpTypeTrace
       
    38         }
       
    39         #endregion
       
    40 
       
    41         #region Constructors
       
    42         protected CFFSource( FileInfo aFile )
       
    43             : base( aFile )
       
    44 		{
       
    45         }
       
    46         #endregion
       
    47 
       
    48         #region API
       
    49         #endregion
       
    50 
       
    51         #region Properties
       
    52         public CFFReader Reader
       
    53         {
       
    54             get { return iReader; }
       
    55             set { iReader = value; }
       
    56         }
       
    57 
       
    58         public TReaderOperationType OpType
       
    59         {
       
    60             get { return iOpType; }
       
    61             set { iOpType = value; }
       
    62         }
       
    63         #endregion
       
    64 
       
    65 		#region Data members
       
    66         private CFFReader iReader = null;
       
    67         private TReaderOperationType iOpType = TReaderOperationType.EReaderOpTypeNotSupported;
       
    68         #endregion
       
    69     }
       
    70 }