summary refs log tree commit diff
path: root/src/rpcStub.hpp
blob: 99d6d5825217a04d3a01828da11c51d09ee21ff7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <grpc++/grpc++.h>
#include "protodefs/include/protos.grpc.pb.h"

class rpcStub{
	public:
		rpcStub(int port);
		std::unique_ptr<grpc::Server> server;
	private:
		

};