Files
Jungfraujoch/writer/gen/api/ApiBase.h
T
leonarski_f d55dad53c0
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 10m43s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 11m8s
Build Packages / Generate python client (push) Successful in 29s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 11m40s
Build Packages / Build documentation (push) Successful in 57s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 13m1s
Build Packages / build:rpm (rocky8) (push) Successful in 13m11s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 13m25s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 13m25s
Build Packages / build:rpm (rocky9) (push) Successful in 14m7s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 7m20s
Build Packages / Unit tests (push) Failing after 53m39s
VERSION: 1.0.0-rc.103
2025-11-18 13:54:23 +01:00

40 lines
823 B
C++

/**
* Jungfraujoch writer
* Jungfraujoch Writer Web API
*
* The version of the OpenAPI document: 1.0.0-rc.103
* 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_ */