ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/oup/current/FileClasses/_TreeElement.pas
(Generate patch)

Comparing oup/current/FileClasses/_TreeElement.pas (file contents):
Revision 240 by alloc, Sat Jul 14 16:50:55 2007 UTC vs.
Revision 241 by alloc, Tue Jul 17 22:27:16 2007 UTC

# Line 4 | Line 4 | interface
4  
5   type
6    TTreeElement = class
7 +    protected
8        FConnectionID: Integer;
9        function GetChildCount: Integer; virtual; abstract;
10        function GetChild(ID: Integer): TTreeElement; virtual; abstract;
11        function GetCaption: String; virtual; abstract;
12 <    private
12 >      function GetType: String; virtual; abstract;
13      public
14        property ConnectionID: Integer read FConnectionID;
15        property ChildCount: Integer read GetChildCount;
16        property Child[ID: Integer]: TTreeElement read GetChild;
17        property Caption: String read GetCaption;
18 +      property VType: String read GetType;
19    end;
20  
21   implementation

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)