summary refs log tree commit diff
path: root/src/rpcStub.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/rpcStub.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rpcStub.hpp b/src/rpcStub.hpp

index 99d6d582..f567cd97 100644 --- a/src/rpcStub.hpp +++ b/src/rpcStub.hpp
@@ -1,11 +1,12 @@ #include <grpc++/grpc++.h> #include "protodefs/include/protos.grpc.pb.h" +#include "rtcPeerHandler.hpp" class rpcStub{ public: - rpcStub(int port); + rpcStub(std::shared_ptr<rtcPeerHandler> peerHandler, int port); std::unique_ptr<grpc::Server> server; - private: - + private: + std::shared_ptr<rtcPeerHandler> ph; }; \ No newline at end of file