summary refs log tree commit diff
path: root/src/rpcStub.hpp
blob: 9da80cdaf0a3292ed4c7bc91592aa29e42d53426 (plain) (blame)
1
2
3
4
5
6
7
8
9
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;

};