source:
trunk/Sibyl/SPCC/CLIPBRD.PAS@
7
Last change on this file since 7 was 7, checked in by , 19 years ago | |
---|---|
|
|
File size: 231 bytes |
Line | |
---|---|
1 | Unit ClipBrd; |
2 | |
3 | Interface |
4 | |
5 | Uses Forms; |
6 | |
7 | Type |
8 | TFormsClipBoard=Class(TClipBoard); |
9 | TClipBoard=Class(TFormsClipBoard) |
10 | End; |
11 | |
12 | Var ClipBoard:TClipBoard; |
13 | |
14 | Implementation |
15 | |
16 | Begin |
17 | ClipBoard:=TClipBoard(Forms.ClipBoard); |
18 | End. |
Note:
See TracBrowser
for help on using the repository browser.