ParsePipe.cs 778 B

1234567891011121314151617181920212223242526272829
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ParsePipe
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/13 16:54:19
  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 RevitExport;
  13. namespace RevitToJBim.ComponentParse
  14. {
  15. public class ParsePipe : ParseBase
  16. {
  17. public override bool Match(ElementWrapper wrapper)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. public override void Parse(ElementWrapper wrapper, JBimParseContext context)
  22. {
  23. throw new NotImplementedException();
  24. }
  25. }
  26. }