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
62 lines
1.8 KiB
C++
62 lines
1.8 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.
|
|
*/
|
|
|
|
/*
|
|
* UserApiImpl.h
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef USER_API_IMPL_H_
|
|
#define USER_API_IMPL_H_
|
|
|
|
|
|
#include <pistache/endpoint.h>
|
|
#include <pistache/http.h>
|
|
#include <pistache/router.h>
|
|
#include <memory>
|
|
|
|
#include <UserApi.h>
|
|
|
|
#include <pistache/optional.h>
|
|
|
|
#include "User.h"
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace org::openapitools::server::api
|
|
{
|
|
|
|
using namespace org::openapitools::server::model;
|
|
|
|
class UserApiImpl : public org::openapitools::server::api::UserApi {
|
|
public:
|
|
explicit UserApiImpl(const std::shared_ptr<Pistache::Rest::Router>& rtr);
|
|
~UserApiImpl() override = default;
|
|
|
|
void create_user(const User &body, Pistache::Http::ResponseWriter &response);
|
|
void create_users_with_array_input(const std::vector<User> &body, Pistache::Http::ResponseWriter &response);
|
|
void create_users_with_list_input(const std::vector<User> &body, Pistache::Http::ResponseWriter &response);
|
|
void delete_user(const std::string &username, Pistache::Http::ResponseWriter &response);
|
|
void get_user_by_name(const std::string &username, Pistache::Http::ResponseWriter &response);
|
|
void login_user(const Pistache::Optional<std::string> &username, const Pistache::Optional<std::string> &password, Pistache::Http::ResponseWriter &response);
|
|
void logout_user(Pistache::Http::ResponseWriter &response);
|
|
void update_user(const std::string &username, const User &body, Pistache::Http::ResponseWriter &response);
|
|
|
|
};
|
|
|
|
} // namespace org::openapitools::server::api
|
|
|
|
|
|
|
|
#endif
|