ParseCore.cs 741 B

123456789101112131415161718192021222324252627282930
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ParseCore
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/13 18:03: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 JBIM;
  13. using JBIM.Component;
  14. namespace RevitToJBim.ComponentParse
  15. {
  16. public class ParseCore
  17. {
  18. public static BimObject GetObject(object obj)
  19. {
  20. return null;
  21. }
  22. public static Connector CreateConnector(Autodesk.Revit.DB.Connector connector)
  23. {
  24. return new Connector();
  25. }
  26. }
  27. }