mirror of
https://github.com/BotChain-Robots/rpc.git
synced 2026-03-09 23:12:27 +01:00
Prepare files for public release
This commit is contained in:
15
include/ICommunicationClient.h
Normal file
15
include/ICommunicationClient.h
Normal file
@@ -0,0 +1,15 @@
|
||||
//
|
||||
// Created by Johnathon Slightham on 2025-06-10.
|
||||
//
|
||||
|
||||
#ifndef INETWORKCLIENT_H
|
||||
#define INETWORKCLIENT_H
|
||||
|
||||
class ICommunicationClient {
|
||||
public:
|
||||
virtual ~ICommunicationClient() = default;
|
||||
virtual int init() = 0;
|
||||
virtual int send_msg(void *sendbuff, uint32_t len) = 0;
|
||||
};
|
||||
|
||||
#endif //INETWORKCLIENT_H
|
||||
Reference in New Issue
Block a user