SOLID design for wifi module

This commit is contained in:
2025-05-26 14:44:08 -04:00
parent aa89bef583
commit a40931b791
6 changed files with 39 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
//
// 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