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