Ignore:
Timestamp:
Nov 11, 2009, 10:30:00 AM (15 years ago)
Author:
george
Message:
  • Delphi projekt převeden na Lazarus projekt.
Location:
branches/Analyzátor gramatiky
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/Analyzátor gramatiky

    • Property svn:ignore
      •  

        old new  
        11*.exe
        22*.dcu
         3backup
         4lib
  • branches/Analyzátor gramatiky/UGrammer.pas

    r17 r28  
    11unit UGrammer;
     2
     3{$MODE Delphi}
    24
    35interface
     
    911  TGrammerRule = class;
    1012
    11   TPathItem = record
     13  TPathItem = class
    1214  public
    1315    Rule: TGrammerRule;
     
    1820  end;
    1921
    20   TGrammerPath = record
     22  TGrammerPath = class
    2123    Items: array of TPathItem;
    2224    procedure Assign(Source: TGrammerPath);
     
    2426  end;
    2527
    26   TPossibleCharacter = record
     28  TPossibleCharacter = class
    2729    Character: Char;
    2830    RulePath: TGrammerPath;
     
    3032  end;
    3133
    32   TPossibleCharacters = record
     34  TPossibleCharacters = class
    3335    Items: array of TPossibleCharacter;
    3436    procedure Assign(Source: TPossibleCharacters);
Note: See TracChangeset for help on using the changeset viewer.