mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 00:00:44 +01:00
21 lines
243 B
C++
21 lines
243 B
C++
#ifndef HOME_APP_H
|
|
#define HOME_APP_H
|
|
|
|
#include <escher.h>
|
|
#include "controller.h"
|
|
|
|
class AppsContainer;
|
|
|
|
namespace Home {
|
|
|
|
class App : public ::App {
|
|
public:
|
|
App(AppsContainer * container);
|
|
private:
|
|
Controller m_controller;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|