Example #1
0
        public DXCompileResult(DXCompileOption option)
        {
            this.Option = option;

            this.Outputs = new List <string>();
            this.Errors  = new List <object>();
        }
Example #2
0
 public DXCompileParameter(
     DXCompileOption option,
     PContentPage[] screens,
     PTemplatePage[] templates,
     PBinderHost[] components)
 {
     this.Option     = option;
     this.Screens    = screens;
     this.Components = components;
     this.Templates  = templates;
 }