SOLID design for wifi module

This commit is contained in:
2025-05-26 14:44:08 -04:00
parent 6a3e13fba1
commit 5d7c67eeed
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