Cleanup interfaces

This commit is contained in:
2025-10-08 17:35:32 -04:00
parent 9627b76183
commit e1435b53b5
9 changed files with 27 additions and 93 deletions

View File

@@ -6,7 +6,9 @@
#define IRPCSERVER_H
class IRPCServer {
public:
virtual ~IRPCServer() = default;
virtual int send_msg(char* buffer, uint32_t length) const = 0;
};
#endif //IRPCSERVER_H