Guest User

Untitled

a guest
Jul 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {$IFDEF trial_version}
  2. ShowMessage('Sorry, this function is not available in trial version');
  3. {$ELSE}
  4. // do the thing
  5. {$END}
  6.  
  7. type
  8. TDummy<T> = class
  9. public
  10. procedure Dummy1;
  11. end;
  12.  
  13. procedure TDummy<T>.Dummy1;
  14. begin
  15. ...
  16. end;
  17.  
  18. var
  19. FDummy1: TDummy<Integer>;
  20. FDummy2: TDummy<Byte>;
  21. FDummy3: TDummy<TButton>;
  22. FDummy4: TDummy<TLabel>;
Add Comment
Please, Sign In to add comment