source: trunk/URouterboard.pas

Last change on this file was 1, checked in by chronos, 4 years ago
  • Added: Initial version.
File size: 560 bytes
Line 
1unit URouterboard;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils;
9
10type
11
12 { TRouterboard }
13
14 TRouterboard = class
15 Logo: TStringList;
16 RouterBoard: Boolean;
17 Model: string;
18 Version: string;
19 Copyright: string;
20 Vendor: string;
21 OS: string;
22 Website: string;
23 constructor Create;
24 destructor Destroy; override;
25 end;
26
27
28implementation
29
30{ TRouterboard }
31
32constructor TRouterboard.Create;
33begin
34 Logo := TStringList.Create;
35end;
36
37destructor TRouterboard.Destroy;
38begin
39 FreeAndNil(Logo);
40 inherited Destroy;
41end;
42
43end.
44
Note: See TracBrowser for help on using the repository browser.