tw2942a.pp 309 B

123456789101112131415161718192021222324252627
  1. unit tw2942a;
  2. interface
  3. {$mode Delphi}
  4. Type
  5. TIdStack = class
  6. public
  7. constructor Create; reintroduce; virtual;
  8. destructor Destroy; override;
  9. end;
  10. implementation
  11. constructor TIdStack.Create;
  12. begin
  13. inherited destroy;
  14. end;
  15. destructor TIdStack.Destroy;
  16. begin
  17. inherited Destroy;
  18. end;
  19. end.