[add] RpcStub header guards

This commit is contained in:
Newe 2021-05-21 15:51:57 +02:00
parent f8eceb3124
commit c29252d5e5

View File

@ -2,6 +2,8 @@
#include "protodefs/include/protos.grpc.pb.h"
#include "rtcPeerHandler.hpp"
#ifndef RPCSTUB
#define RPCSTUB
class rpcStub{
public:
rpcStub(std::shared_ptr<rtcPeerHandler> peerHandler, int port);
@ -9,4 +11,5 @@ class rpcStub{
private:
std::shared_ptr<rtcPeerHandler> ph;
};
};
#endif