Esempio n. 1
0
 internal static void parseFields(IfcOutletType t, List <string> arrFields, ref int ipos)
 {
     IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcOutletTypeEnum)Enum.Parse(typeof(IfcOutletTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
Esempio n. 2
0
 internal new static IfcOutletType Parse(string strDef)
 {
     IfcOutletType t = new IfcOutletType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return(t);
 }
Esempio n. 3
0
 internal IfcOutletType(DatabaseIfc db, IfcOutletType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 4
0
 internal IfcOutletType(IfcOutletType t) : base(t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 5
0
		internal new static IfcOutletType Parse(string strDef) { IfcOutletType t = new IfcOutletType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Esempio n. 6
0
		internal static void parseFields(IfcOutletType t, List<string> arrFields, ref int ipos) { IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcOutletTypeEnum)Enum.Parse(typeof(IfcOutletTypeEnum), arrFields[ipos++].Replace(".", "")); }
Esempio n. 7
0
		internal IfcOutletType(IfcOutletType t) : base(t) { mPredefinedType = t.mPredefinedType; }