mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 09:37:21 +02:00
16 lines
293 B
C++
16 lines
293 B
C++
//
|
|
// 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 //ICONNECTIONMANAGER_H
|