예제 #1
0
파일: IFC M.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcMedicalDevice Parse(string strDef) { IfcMedicalDevice s = new IfcMedicalDevice(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
예제 #2
0
파일: IFC M.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcMedicalDevice(IfcMedicalDevice be) : base(be) { }
예제 #3
0
파일: IFC M.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcMedicalDevice s, List<string> arrFields, ref int ipos)
		{
			IfcFlowTerminal.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcMedicalDeviceTypeEnum)Enum.Parse(typeof(IfcMedicalDeviceTypeEnum), str.Substring(1, str.Length - 2));
		}