Cleanup rpc interfaces

This commit is contained in:
2025-10-22 23:07:41 -04:00
parent c1512a1fa6
commit 6a1bf027b4
28 changed files with 224 additions and 97 deletions

View File

@@ -0,0 +1,15 @@
//
// Created by Johnathon Slightham on 2025-05-26.
//
#ifndef ICONNECTIONMANAGER_H
#define ICONNECTIONMANAGER_H
class IConnectionManager{
public:
virtual ~IConnectionManager() = default;
virtual int connect() = 0;
virtual int disconnect() = 0;
};
#endif //IWIFIMANAGER_H