/*------------------------------------------------------------------------- * 功能描述: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 FastIndex() { return new List() {typeof(Space).FullName}; } public override bool Match(ElementWrapper wrapper) { return wrapper.RefElement is Space; } protected override List ParseInner(ElementWrapper wrapper, JBimParseContext context) { throw new NotImplementedException(); } } }