diff options
Diffstat (limited to 'src/rpcStub.hpp')
-rw-r--r-- | src/rpcStub.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/rpcStub.hpp b/src/rpcStub.hpp new file mode 100644 index 00000000..9da80cda --- /dev/null +++ b/src/rpcStub.hpp @@ -0,0 +1,10 @@ +#include <grpc++/grpc++.h> +#include "protodefs/include/protos.grpc.pb.h" + +class rpcStub{ + public: + rpcStub(int port); + private: + std::unique_ptr<grpc::Server> server; + +}; \ No newline at end of file |