12345678910111213141516171819202122232425262728293031323334 |
- /*-------------------------------------------------------------------------
- * 功能描述:ParseSpace
- * 作者:xulisong
- * 创建时间: 2019/6/17 14:28:03
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Autodesk.Revit.DB.Mechanical;
- using JBIM;
- using RevitExport;
- namespace RevitToJBim.ComponentParse
- {
- public class ParseSpace : ParseBase
- {
- public override List<string> FastIndex()
- {
- return new List<string>() {typeof(Space).FullName};
- }
- public override bool Match(ElementWrapper wrapper)
- {
- return wrapper.RefElement is Space;
- }
- protected override List<BimId> ParseInner(ElementWrapper wrapper, JBimParseContext context)
- {
- throw new NotImplementedException();
- }
- }
- }
|