summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/server_implementation.hpp
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-06-20 12:50:02 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-06-25 13:59:48 +0200
commitc2817da6d108acc38f17bf29900aa66d71337b34 (patch)
tree67a01416fe0ca645fc2957f6c33cbb987cded3a2 /src/buildtool/execution_api/execution_service/server_implementation.hpp
parenta08816fe82c04fbbc459d10b410efca27d260a20 (diff)
downloadjustbuild-c2817da6d108acc38f17bf29900aa66d71337b34.tar.gz
Pass ApiBundle to ServerImpl
Diffstat (limited to 'src/buildtool/execution_api/execution_service/server_implementation.hpp')
-rw-r--r--src/buildtool/execution_api/execution_service/server_implementation.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/execution_service/server_implementation.hpp b/src/buildtool/execution_api/execution_service/server_implementation.hpp
index 4570a66c..7df517ad 100644
--- a/src/buildtool/execution_api/execution_service/server_implementation.hpp
+++ b/src/buildtool/execution_api/execution_service/server_implementation.hpp
@@ -18,6 +18,8 @@
#include <fstream>
#include <string>
+#include "src/buildtool/execution_api/common/api_bundle.hpp"
+
class ServerImpl {
public:
ServerImpl() noexcept = default;
@@ -45,7 +47,7 @@ class ServerImpl {
ServerImpl(ServerImpl&&) noexcept = delete;
auto operator=(ServerImpl&&) noexcept -> ServerImpl& = delete;
- auto Run() -> bool;
+ auto Run(ApiBundle const& apis) -> bool;
~ServerImpl() = default;
private: