-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIHttpBody.h
More file actions
45 lines (36 loc) · 894 Bytes
/
IHttpBody.h
File metadata and controls
45 lines (36 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* Cloudiator REST Api
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 0.2.0
* Contact: daniel.baur@uni-ulm.de
*
* NOTE: This class is auto generated by the swagger code generator 2.3.0-SNAPSHOT.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/*
* IHttpBody.h
*
* This is the interface for contents that can be sent to a remote HTTP server.
*/
#ifndef IO_GITHUB_CLOUDIATOR_REST_MODEL_IHttpBody_H_
#define IO_GITHUB_CLOUDIATOR_REST_MODEL_IHttpBody_H_
#include <iostream>
namespace io {
namespace github {
namespace cloudiator {
namespace rest {
namespace model {
class IHttpBody
{
public:
virtual ~IHttpBody() { }
virtual void writeTo( std::ostream& stream ) = 0;
};
}
}
}
}
}
#endif /* IO_GITHUB_CLOUDIATOR_REST_MODEL_IHttpBody_H_ */