12345678910111213141516171819202122232425262728293031323334 |
-
- 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();
- }
- }
- }
|