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

cpp-pistache-server.api-impl-header.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>licenseInfo}}

{{#operations}}/*
* {{classname}}Impl.h
*
* {{description}}
*/

#ifndef {{classnameSnakeUpperCase}}_IMPL_H_
#define {{classnameSnakeUpperCase}}_IMPL_H_

{{{defaultInclude}}}
#include 
#include 
#include 
#include 
#include 

#include <{{classname}}.h>


{{#imports}}{{{import}}}
{{/imports}}

namespace {{apiNamespace}}
{

{{#hasModelImport}}
using namespace {{modelNamespace}};{{/hasModelImport}}

class {{declspec}} {{classname}}Impl : public {{apiNamespace}}::{{classname}} {
public:
    explicit {{classname}}Impl(const std::shared_ptr& rtr);
    ~{{classname}}Impl() override = default;

    {{#operation}}
    {{#vendorExtensions.x-codegen-pistache-is-parsing-supported}}
    void {{operationIdSnakeCase}}({{#allParams}}const {{{dataType}}} &{{paramName}}{{^-last}}, {{/-last}}{{/allParams}}{{#hasParams}}, {{/hasParams}}Pistache::Http::ResponseWriter &response);
    {{/vendorExtensions.x-codegen-pistache-is-parsing-supported}}
    {{^vendorExtensions.x-codegen-pistache-is-parsing-supported}}
    void {{operationIdSnakeCase}}(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter &response);
    {{/vendorExtensions.x-codegen-pistache-is-parsing-supported}}
    {{/operation}}

};

} // namespace {{apiNamespace}}

{{/operations}}


#endif




© 2015 - 2024 Weber Informatics LLC | Privacy Policy