You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
779 B

2 years ago
  1. /**
  2. * Seaweedfs Master Server API
  3. * The Seaweedfs Master Server API allows you to store blobs
  4. *
  5. * The version of the OpenAPI document: 3.43.0
  6. *
  7. * NOTE: This class is auto generated by OpenAPI-Generator 6.4.0.
  8. * https://openapi-generator.tech
  9. * Do not edit the class manually.
  10. */
  11. /*
  12. * IHttpBody.h
  13. *
  14. * This is the interface for contents that can be sent to a remote HTTP server.
  15. */
  16. #ifndef ORG_OPENAPITOOLS_CLIENT_MODEL_IHttpBody_H_
  17. #define ORG_OPENAPITOOLS_CLIENT_MODEL_IHttpBody_H_
  18. #include <iostream>
  19. namespace org {
  20. namespace openapitools {
  21. namespace client {
  22. namespace model {
  23. class IHttpBody
  24. {
  25. public:
  26. virtual ~IHttpBody() { }
  27. virtual void writeTo( std::ostream& stream ) = 0;
  28. };
  29. }
  30. }
  31. }
  32. }
  33. #endif /* ORG_OPENAPITOOLS_CLIENT_MODEL_IHttpBody_H_ */