Beispiel #1
0
 /// <summary>
 /// CRoutingSpace. Name must be the same with specified in FED.
 /// </summary>
 public CRoutingSpace(string name)
 {
     Name       = name;// FED space isimleri ile ayni olmali
     Dimensions = new BindingList <CDimension>();
     Regions    = new BindingList <CRegion>();
     _rtiAmb    = null;
 }
Beispiel #2
0
 /// <summary>
 ///  CRegion constructor.
 /// </summary>
 public CRegion(String name)
     : base()
 {
     Name    = name;
     _rtiAmb = null;
     Extents = new BindingList <CExtent>();
 }
Beispiel #3
0
 /// <summary>
 /// CDimension constructor. Dimension name must be the same with the one specified in FED/FDD.
 /// </summary>
 public CDimension(String name, CRoutingSpace space)
     : base()
 {
     Name    = name;
     Space   = space;
     _rtiAmb = null;
 }
Beispiel #4
0
 /// <summary>
 /// CObjectModel constructor.
 /// </summary>
 public CObjectModel()
 //: base()
 {
     RtiAmb     = null;
     ICList     = new List <HlaInteractionClass>();
     OCList     = new List <HlaObjectClass>();
     RSList     = new List <CRoutingSpace>();
     Dimensions = new List <HlaDimension>();
 }