All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp-rest-sdk-client.jsonbody-header.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>licenseInfo}}
/*
 * JsonBody.h
 *
 * This is a JSON http body which can be submitted via http
 */

#ifndef {{modelHeaderGuardPrefix}}_JsonBody_H_
#define {{modelHeaderGuardPrefix}}_JsonBody_H_

{{{defaultInclude}}}
#include "{{packageName}}/IHttpBody.h"

#include 

{{#modelNamespaceDeclarations}}
namespace {{this}} {
{{/modelNamespaceDeclarations}}

class {{declspec}} JsonBody
    : public IHttpBody
{
public:
    JsonBody( const web::json::value& value );
    virtual ~JsonBody();

    void writeTo( std::ostream& target ) override;

protected:
    web::json::value m_Json;
};

{{#modelNamespaceDeclarations}}
}
{{/modelNamespaceDeclarations}}

#endif /* {{modelHeaderGuardPrefix}}_JsonBody_H_ */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy