상속: IfcDistributionControlElement
예제 #1
0
파일: ifc A.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcAlarm Parse(string strDef) { IfcAlarm a = new IfcAlarm(); int ipos = 0; parseFields(a, ParserSTEP.SplitLineFields(strDef), ref ipos); return a; }
예제 #2
0
파일: ifc A.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcAlarm(IfcAlarm a) : base(a) { mPredefinedType = a.mPredefinedType; }
예제 #3
0
파일: ifc A.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcAlarm a, List<string> arrFields, ref int ipos) 
		{ 
			IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
			string s = arrFields[ipos++];
			if (s.StartsWith("."))
				a.mPredefinedType = (IfcAlarmTypeEnum)Enum.Parse(typeof(IfcAlarmTypeEnum), s.Replace(".", ""));
		}
예제 #4
0
		internal IfcAlarm(DatabaseIfc db, IfcAlarm a) : base(db, a) { mPredefinedType = a.mPredefinedType; }