ParseSpace.cs 974 B

12345678910111213141516171819202122232425262728293031323334
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ParseSpace
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/17 14:28:03
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using Autodesk.Revit.DB.Mechanical;
  13. using JBIM;
  14. using RevitExport;
  15. namespace RevitToJBim.ComponentParse
  16. {
  17. public class ParseSpace : ParseBase
  18. {
  19. public override List<string> FastIndex()
  20. {
  21. return new List<string>() {typeof(Space).FullName};
  22. }
  23. public override bool Match(ElementWrapper wrapper)
  24. {
  25. return wrapper.RefElement is Space;
  26. }
  27. protected override List<BimId> ParseInner(ElementWrapper wrapper, JBimParseContext context)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. }
  32. }