private void LoadSimulationDefinitions(IReader reader)
 {
     if (_tags != null && _buildInfo.Layouts.HasLayout("scnr") && _buildInfo.Layouts.HasLayout("simulation definition table entry"))
     {
         ITag scnr = _tags.FindTagByClass("scnr");
         if (scnr != null)
         {
             _simulationDefinitions = new ThirdGenSimulationDefinitionTable(scnr, _tags, reader, MetaArea, Allocator, _buildInfo, _expander);
         }
     }
 }
Beispiel #2
0
 private void LoadSimulationDefinitions(IReader reader)
 {
     if (_tags != null && _buildInfo.Layouts.HasLayout("scnr") && _buildInfo.Layouts.HasLayout("simulation definition table element"))
     {
         ITag scnr = _tags.GetGlobalTag(CharConstant.FromString("scnr"));
         if (scnr != null)
         {
             _simulationDefinitions = new ThirdGenSimulationDefinitionTable(scnr, _tags, reader, MetaArea, Allocator, _buildInfo, _expander);
         }
     }
 }