12345678910111213141516171819202122232425262728293031 |
- /*-------------------------------------------------------------------------
- * 功能描述:RevitToJBimParser
- * 作者:xulisong
- * 创建时间: 2019/6/17 17:24:29
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using JBIM;
- using RevitExport;
- using RevitExport.Parse;
- using RevitToJBim.ComponentParse;
- namespace RevitToJBim
- {
- public class RevitToJBimParser: ParseInstance<JBimParseContext, BimId>
- {
- public RevitToJBimParser(JBimParseContext context, List<ParseBase> parsers):base(context,parsers.OfType<IParseElement<JBimParseContext, BimId>>().ToList())
- {
-
- }
- //public override List<BimId> ParseElement(ElementWrapper elementWrapper)
- //{
- // return base.ParseElement(elementWrapper);
- //}
- }
- }
|