/*------------------------------------------------------------------------- * 功能描述:ParseBase * 作者:xulisong * 创建时间: 2019/6/13 16:55:35 * 版本号:v1.0 * -------------------------------------------------------------------------*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using RevitExport; namespace RevitToJBim.ComponentParse { public abstract class ParseBase : IParseElement { public abstract bool Match(ElementWrapper wrapper); public abstract void Parse(ElementWrapper wrapper, JBimParseContext context); } }