Example #1
0
 internal new static IfcOccupant Parse(string strDef)
 {
     IfcOccupant a = new IfcOccupant(); int ipos = 0; parseFields(a, ParserSTEP.SplitLineFields(strDef), ref ipos); return(a);
 }
Example #2
0
 internal static void parseFields(IfcOccupant a, List <string> arrFields, ref int ipos)
 {
     IfcObject.parseFields(a, arrFields, ref ipos); a.mTheActor = ParserSTEP.ParseLink(arrFields[ipos++]);
 }
Example #3
0
 internal IfcOccupant(DatabaseIfc db, IfcOccupant o) : base(db, o)
 {
     mPredefinedType = o.mPredefinedType;
 }
Example #4
0
 internal IfcOccupant(IfcOccupant o) : base(o)
 {
 }
Example #5
0
		internal static void parseFields(IfcOccupant a, List<string> arrFields, ref int ipos) { IfcObject.parseFields(a, arrFields, ref ipos); a.mTheActor = ParserSTEP.ParseLink(arrFields[ipos++]); }
Example #6
0
		internal new static IfcOccupant Parse(string strDef) { IfcOccupant a = new IfcOccupant(); int ipos = 0; parseFields(a, ParserSTEP.SplitLineFields(strDef), ref ipos); return a; }
Example #7
0
		internal IfcOccupant(IfcOccupant o) : base(o) { }