Rename DisplayInterface file to DisplayAbstract
This commit is contained in:
parent
305541bc52
commit
ddccfa141d
7 changed files with 6 additions and 6 deletions
|
@ -9,7 +9,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include "BatteryInterface.h"
|
||||
#include "DisplayInterface.h"
|
||||
#include "DisplayAbstract.h"
|
||||
#include "wifiHandlerInterface.h"
|
||||
#include "Notification.hpp"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "DisplayInterface.h"
|
||||
#include "DisplayAbstract.h"
|
||||
|
||||
class BatteryInterface {
|
||||
public:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "DisplayInterface.h"
|
||||
#include "DisplayAbstract.h"
|
||||
|
||||
std::shared_ptr<DisplayAbstract> DisplayAbstract::mInstance = nullptr;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
#include "BatteryInterface.h"
|
||||
#include "DisplayInterface.h"
|
||||
#include "DisplayAbstract.h"
|
||||
|
||||
class Battery: public BatteryInterface {
|
||||
public:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "DisplayInterface.h"
|
||||
#include "DisplayAbstract.h"
|
||||
#include <Adafruit_FT6206.h>
|
||||
#include <memory>
|
||||
#include <TFT_eSPI.h>
|
||||
|
|
|
@ -48,7 +48,7 @@ lib_archive = false
|
|||
build_src_filter =
|
||||
+<../OmoteUI/*>
|
||||
+<../HAL/HardwareAbstract.cpp>
|
||||
+<../HAL/DisplayInterface.cpp>
|
||||
+<../HAL/HardwareInterfaces/DisplayAbstract.cpp>
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue