crashanalysercmd/UI/CrashServer/Engine/Files/CACmdLineFileSource.cs
changeset 2 0c91f0baec58
parent 0 818e61de6cd1
--- a/crashanalysercmd/UI/CrashServer/Engine/Files/CACmdLineFileSource.cs	Tue Feb 23 17:05:24 2010 +0200
+++ b/crashanalysercmd/UI/CrashServer/Engine/Files/CACmdLineFileSource.cs	Wed Apr 21 09:51:02 2010 +0300
@@ -20,6 +20,8 @@
 using System.Collections.Generic;
 using CrashItemLib.Crash.Container;
 using CrashItemLib.Engine.Sources;
+using MobileCrashLib.Structures;
+using MobileCrashLib.Structures.Items;
 
 namespace CrashAnalyserServerExe.Engine
 {
@@ -129,6 +131,19 @@
             get { return iState; }
             set { iState = value; }
         }
+
+        public TMobileCrashContentType ContentType
+        {
+            get { return iContentType; }
+            set { iContentType = value; }
+        }
+
+        public MobileCrashItemUint32 RomId
+        {
+            get { return iRomId; }
+            set { iRomId = value; }
+        }
+
         #endregion
 
         #region Internal methods
@@ -217,6 +232,8 @@
         private CIEngineSource iSource = null;
         private List<OutputEntry> iOutputs = new List<OutputEntry>();
         private CIContainerCollection iContainers = null;
+        private TMobileCrashContentType iContentType = TMobileCrashContentType.EContentTypeUnknown;
+        private MobileCrashItemUint32 iRomId = new MobileCrashItemUint32();
         #endregion
     }