diff options
author | neodarz <neodarz@neodarz.net> | 2019-08-06 13:48:26 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-08-06 13:48:26 +0200 |
commit | 2cb04d30c6552ac394278ca3dda5b7246d0f16b8 (patch) | |
tree | 1159725e1170f5ba2d759e93299c166e3553d2f8 | |
parent | f2ba3ddf4321b9dd97492b0d87846a291d4d6be3 (diff) | |
download | umosapicpp-2cb04d30c6552ac394278ca3dda5b7246d0f16b8.tar.xz umosapicpp-2cb04d30c6552ac394278ca3dda5b7246d0f16b8.zip |
Move header declaration to the interface file
Diffstat (limited to '')
-rw-r--r-- | umosapi.cpp | 2 | ||||
-rw-r--r-- | umosapi.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/umosapi.cpp b/umosapi.cpp index e3052a6..e71a688 100644 --- a/umosapi.cpp +++ b/umosapi.cpp @@ -6,8 +6,6 @@ #include <sys/types.h> #include <pwd.h> -#include <pistache/serializer/rapidjson.h> - #include <bsoncxx/builder/stream/document.hpp> #include <bsoncxx/json.hpp> @@ -5,6 +5,8 @@ #include <pistache/description.h> #include <pistache/endpoint.h> +#include <pistache/serializer/rapidjson.h> + using namespace Pistache; class UmosapiService { |