mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
Cleanup rpc interfaces
This commit is contained in:
15
components/rpc/include/IConnectionManager.h
Normal file
15
components/rpc/include/IConnectionManager.h
Normal 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
|
||||
Reference in New Issue
Block a user