crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianDebugLib/Entity/Configurations/DbgEntityConfig.cs
changeset 3 045ade241ef5
parent 0 818e61de6cd1
equal deleted inserted replaced
2:0c91f0baec58 3:045ade241ef5
   175             iSets.Add( aSet.Name, aSet );
   175             iSets.Add( aSet.Name, aSet );
   176         }
   176         }
   177         #endregion
   177         #endregion
   178 
   178 
   179         #region Properties
   179         #region Properties
       
   180 
       
   181         public bool SymbolDataNeeded
       
   182         {
       
   183             get { return iSymbolDataNeeded; }
       
   184             set { iSymbolDataNeeded = value; }
       
   185         }
       
   186 
   180         public DbgEngine Engine
   187         public DbgEngine Engine
   181         {
   188         {
   182             get { return Manager.Engine; }
   189             get { return Manager.Engine; }
   183         }
   190         }
   184 
   191 
   210         #endregion
   217         #endregion
   211 
   218 
   212         #region Data members
   219         #region Data members
   213         private readonly DbgEntityConfigManager iManager;
   220         private readonly DbgEntityConfigManager iManager;
   214         private Dictionary<string, CfgSet> iSets = new Dictionary<string, CfgSet>();
   221         private Dictionary<string, CfgSet> iSets = new Dictionary<string, CfgSet>();
       
   222         private bool iSymbolDataNeeded = true;
   215         #endregion
   223         #endregion
   216     }
   224     }
   217 }
   225 }