using System.Collections.Generic; using XP.ReportEngine.Models; namespace XP.ReportEngine.Interfaces { /// /// 排版引擎接口 | Layout engine interface /// public interface ILayoutEngine { /// /// 计算页面布局 | Calculate page layout /// /// 绑定后的模板 | Bound template /// 生成选项 | Generation options /// 排版后的页面列表 | List of laid-out pages List CalculateLayout(ReportTemplate template, ReportGenerationOptions options); } }