Rename DisplayInterface file to DisplayAbstract

This commit is contained in:
Matthew Colvin 2023-08-13 22:23:05 -05:00 committed by MatthewColvin
parent 305541bc52
commit ddccfa141d
7 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@
#include <string>
#include <vector>
#include "BatteryInterface.h"
#include "DisplayInterface.h"
#include "DisplayAbstract.h"
#include "wifiHandlerInterface.h"
#include "Notification.hpp"

View file

@ -1,5 +1,5 @@
#pragma once
#include "DisplayInterface.h"
#include "DisplayAbstract.h"
class BatteryInterface {
public:

View file

@ -1,4 +1,4 @@
#include "DisplayInterface.h"
#include "DisplayAbstract.h"
std::shared_ptr<DisplayAbstract> DisplayAbstract::mInstance = nullptr;

View file

@ -1,6 +1,6 @@
#pragma once
#include "BatteryInterface.h"
#include "DisplayInterface.h"
#include "DisplayAbstract.h"
class Battery: public BatteryInterface {
public:

View file

@ -1,5 +1,5 @@
#pragma once
#include "DisplayInterface.h"
#include "DisplayAbstract.h"
#include <Adafruit_FT6206.h>
#include <memory>
#include <TFT_eSPI.h>

View file

@ -48,7 +48,7 @@ lib_archive = false
build_src_filter =
+<../OmoteUI/*>
+<../HAL/HardwareAbstract.cpp>
+<../HAL/DisplayInterface.cpp>
+<../HAL/HardwareInterfaces/DisplayAbstract.cpp>