aboutsummaryrefslogtreecommitdiff
path: root/umosapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'umosapi.h')
-rw-r--r--umosapi.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/umosapi.h b/umosapi.h
deleted file mode 100644
index 684f9d5..0000000
--- a/umosapi.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef UmosapiService_H_
-#define UmosapiService_H_
-
-#include <pistache/http.h>
-#include <pistache/description.h>
-#include <pistache/endpoint.h>
-
-#include <pistache/serializer/rapidjson.h>
-
-using namespace Pistache;
-
-class UmosapiService {
- public:
-
- UmosapiService(Address addr);
- virtual ~UmosapiService() {};
-
- void init(size_t thr);
-
- void start(std::string swaggerui);
-
- private:
- void createDescription();
-
- void retrieveAll(const Rest::Request& request, Http::ResponseWriter response);
-
- void addUObject(const Rest::Request& request, Http::ResponseWriter response);
-
- std::shared_ptr<Http::Endpoint> httpEndpoint;
- Rest::Description desc;
- Rest::Router router;
-};
-#endif