Ignore:
Timestamp:
Aug 8, 2017, 11:15:41 PM (7 years ago)
Author:
chronos
Message:
  • Added: Rule items can be managed.
  • Added: Show BNF syntax on main form.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/generator/generator.lpr

    r109 r110  
    88  {$ENDIF}{$ENDIF}
    99  Interfaces, // this includes the LCL widgetset
    10   Forms, UFormMain, UFormRules, UCore, URules, UFormRule
     10  Forms, UCore, URules, UFormRule, UFormMain, UFormRules, UFormRuleItem
    1111  { you can add units after this };
    1212
     
    1414
    1515begin
    16   RequireDerivedFormResource:=True;
     16  RequireDerivedFormResource := True;
    1717  Application.Initialize;
     18  Application.CreateForm(TCore, Core);
    1819  Application.CreateForm(TFormMain, FormMain);
     20  Application.CreateForm(TFormRule, FormRule);
    1921  Application.CreateForm(TFormRules, FormRules);
    20   Application.CreateForm(TCore, Core);
    21   Application.CreateForm(TFormRule, FormRule);
     22  Application.CreateForm(TFormRuleItem, FormRuleItem);
    2223  Application.Run;
    2324end.
Note: See TracChangeset for help on using the changeset viewer.