brookhttpdefs.pas 869 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. (*
  2. Brook for Free Pascal
  3. Copyright (C) 2014-2019 Silvio Clecio
  4. See the file LICENSE.txt, included in this distribution,
  5. for details about the copyright.
  6. This library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. *)
  10. { HttpDefs classes. }
  11. unit BrookHttpDefs;
  12. {$i brook.inc}
  13. interface
  14. uses
  15. HttpDefs;
  16. type
  17. { Alias to @code(TRequest). }
  18. TBrookRequest = TRequest;
  19. { Alias to @code(TResponse). }
  20. TBrookResponse = TResponse;
  21. { Alias to @code(TUploadedFile). }
  22. TBrookUploadedFile = TUploadedFile;
  23. { Alias to @code(TUploadedFiles). }
  24. TBrookUploadedFiles = TUploadedFiles;
  25. { Alias to @code(TCookie). }
  26. TBrookCookie = TCookie;
  27. { Alias to @code(TCookies). }
  28. TBrookCookies = TCookies;
  29. implementation
  30. end.