mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
16 lines
351 B
C++
16 lines
351 B
C++
#ifndef APPS_VARIABLE_BOX_CONTROLLER_H
|
|
#define APPS_VARIABLE_BOX_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include "node_navigation_controller.h"
|
|
|
|
class VariableBoxController : public NodeNavigationController {
|
|
public:
|
|
const char * title() const override;
|
|
private:
|
|
Node * nodeModel() override;
|
|
bool selectLeaf(Node * selectedNode) override;
|
|
};
|
|
|
|
#endif
|