From 2e40b4909486269d5edd18ba7431a8e12d2abbde Mon Sep 17 00:00:00 2001 From: Johnathon Slightham Date: Wed, 15 Oct 2025 23:14:39 -0400 Subject: [PATCH] Cleanup interfaces --- components/rpc/include/IRPCServer.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/rpc/include/IRPCServer.h b/components/rpc/include/IRPCServer.h index 9de70a1..ed91386 100644 --- a/components/rpc/include/IRPCServer.h +++ b/components/rpc/include/IRPCServer.h @@ -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