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