IdTestReply.pas 254 B

1234567891011121314151617181920212223
  1. unit IdTestReply;
  2. //See TIdTestReplyRFC, as IdReply has abstract functions
  3. interface
  4. uses
  5. IdGlobal,
  6. IdReply,
  7. IdSys,
  8. IdTest;
  9. type
  10. TIdTestReply = class(TIdTest)
  11. published
  12. end;
  13. implementation
  14. initialization
  15. end.