Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 12m13s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 12m27s
Build Packages / Generate python client (push) Successful in 19s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 12m55s
Build Packages / build:rpm (rocky8) (push) Successful in 13m5s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 13m13s
Build Packages / Build documentation (push) Successful in 36s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 13m31s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 13m24s
Build Packages / build:rpm (rocky9) (push) Successful in 14m10s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 6m41s
Build Packages / Unit tests (push) Failing after 50m12s
40 lines
823 B
C++
40 lines
823 B
C++
/**
|
|
* Jungfraujoch writer
|
|
* Jungfraujoch Writer Web API
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0-rc.107
|
|
* Contact: filip.leonarski@psi.ch
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
/*
|
|
* ApiBase.h
|
|
*
|
|
* Generalization of the Api classes
|
|
*/
|
|
|
|
#ifndef ApiBase_H_
|
|
#define ApiBase_H_
|
|
|
|
#include <pistache/router.h>
|
|
#include <memory>
|
|
|
|
namespace org::openapitools::server::api
|
|
{
|
|
|
|
class ApiBase {
|
|
public:
|
|
explicit ApiBase(const std::shared_ptr<Pistache::Rest::Router>& rtr) : router(rtr) {};
|
|
virtual ~ApiBase() = default;
|
|
virtual void init() = 0;
|
|
|
|
protected:
|
|
const std::shared_ptr<Pistache::Rest::Router> router;
|
|
};
|
|
|
|
} // namespace org::openapitools::server::api
|
|
|
|
#endif /* ApiBase_H_ */
|