You've already forked meshtastic-device-ui
mirror of
https://github.com/m5stack/meshtastic-device-ui.git
synced 2026-05-20 11:51:03 -07:00
15 lines
249 B
C++
15 lines
249 B
C++
#pragma once
|
|
#include "graphics/driver/DisplayDriverConfig.h"
|
|
|
|
class DeviceGUI;
|
|
|
|
class ViewFactory
|
|
{
|
|
public:
|
|
static DeviceGUI *create(void);
|
|
static DeviceGUI *create(const DisplayDriverConfig &cfg);
|
|
|
|
protected:
|
|
ViewFactory(void);
|
|
};
|