Prepare files for public release

This commit is contained in:
2026-01-24 10:26:37 -05:00
parent 2f358c30e6
commit d89c636e2f
28 changed files with 2013 additions and 0 deletions

View 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