mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 09:37:21 +02:00
16 lines
264 B
C++
16 lines
264 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-05-26.
|
|
//
|
|
|
|
#ifndef IWIFIMANAGER_H
|
|
#define IWIFIMANAGER_H
|
|
|
|
class IWifiManager {
|
|
public:
|
|
virtual ~IWifiManager() = default;
|
|
virtual int connect() = 0;
|
|
virtual int disconnect() = 0;
|
|
};
|
|
|
|
#endif //IWIFIMANAGER_H
|