I use a standard set of templates, changes are made in api-header.mustache and api-source.mustache. Their _old versions contain the originals. Additions are necessary for the header argument in the generated functions so that you can authenticate using cookies.
30 lines
595 B
Text
30 lines
595 B
Text
{{>licenseInfo}}
|
|
/*
|
|
* IHttpBody.h
|
|
*
|
|
* This is the interface for contents that can be sent to a remote HTTP server.
|
|
*/
|
|
|
|
#ifndef {{modelHeaderGuardPrefix}}_IHttpBody_H_
|
|
#define {{modelHeaderGuardPrefix}}_IHttpBody_H_
|
|
|
|
{{{defaultInclude}}}
|
|
#include <iostream>
|
|
|
|
{{#modelNamespaceDeclarations}}
|
|
namespace {{this}} {
|
|
{{/modelNamespaceDeclarations}}
|
|
|
|
class {{declspec}} IHttpBody
|
|
{
|
|
public:
|
|
virtual ~IHttpBody() { }
|
|
|
|
virtual void writeTo( std::ostream& stream ) = 0;
|
|
};
|
|
|
|
{{#modelNamespaceDeclarations}}
|
|
}
|
|
{{/modelNamespaceDeclarations}}
|
|
|
|
#endif /* {{modelHeaderGuardPrefix}}_IHttpBody_H_ */
|