/** * Swagger Petstore * This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. * * OpenAPI spec version: 1.0.0 * Contact: apiteam@swagger.io * * NOTE: This class is auto generated by the swagger code generator 2.3.0-SNAPSHOT. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /* * StoreApi.h * * */ #ifndef StoreApi_H_ #define StoreApi_H_ #include #include #include #include #include "Order.h" #include #include namespace io { namespace swagger { namespace server { namespace api { using namespace io::swagger::server::model; class StoreApi: public restbed::Service { public: StoreApi(); ~StoreApi(); void startService(int const& port); void stopService(); }; /// /// Delete purchase order by ID /// /// /// For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors /// class StoreApiStoreOrderOrderIdResource: public restbed::Resource { public: StoreApiStoreOrderOrderIdResource(); virtual ~StoreApiStoreOrderOrderIdResource(); void DELETE_method_handler(const std::shared_ptr session); void GET_method_handler(const std::shared_ptr session); }; /// /// Returns pet inventories by status /// /// /// Returns a map of status codes to quantities /// class StoreApiStoreInventoryResource: public restbed::Resource { public: StoreApiStoreInventoryResource(); virtual ~StoreApiStoreInventoryResource(); void GET_method_handler(const std::shared_ptr session); }; /// /// Place an order for a pet /// /// /// /// class StoreApiStoreOrderResource: public restbed::Resource { public: StoreApiStoreOrderResource(); virtual ~StoreApiStoreOrderResource(); void POST_method_handler(const std::shared_ptr session); }; } } } } #endif /* StoreApi_H_ */