forked from loafle/openapi-generator-original
* overhaul pistache templates * fix function signature in model-source return type now aligns with definition in model-header * use default keyword for destructors * generate pistache samples * move bin/configs/other/cpp-pistache-server-cpp-pistache.yaml to bin/configs/cpp-pistache-server-cpp-pistache.yaml * Only generate validation body if necessary * generate pistache samples
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/**
|
|
* OpenAPI Petstore
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
#include "StoreApiImpl.h"
|
|
|
|
namespace org {
|
|
namespace openapitools {
|
|
namespace server {
|
|
namespace api {
|
|
|
|
using namespace org::openapitools::server::model;
|
|
|
|
StoreApiImpl::StoreApiImpl(const std::shared_ptr<Pistache::Rest::Router>& rtr)
|
|
: StoreApi(rtr)
|
|
{
|
|
}
|
|
|
|
void StoreApiImpl::delete_order(const std::string &orderId, Pistache::Http::ResponseWriter &response) {
|
|
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
|
|
}
|
|
void StoreApiImpl::get_inventory(Pistache::Http::ResponseWriter &response) {
|
|
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
|
|
}
|
|
void StoreApiImpl::get_order_by_id(const int64_t &orderId, Pistache::Http::ResponseWriter &response) {
|
|
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
|
|
}
|
|
void StoreApiImpl::place_order(const Order &body, Pistache::Http::ResponseWriter &response) {
|
|
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|