mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +01:00
[apps] create an abstract class for node
Change-Id: I3a946df720c37ec2b087cf6131ea886da3e26c95
This commit is contained in:
9
apps/tool_box_node.cpp
Normal file
9
apps/tool_box_node.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "tool_box_node.h"
|
||||
|
||||
const char * ToolBoxNode::text() const {
|
||||
return m_text;
|
||||
}
|
||||
|
||||
const Node * ToolBoxNode::children(int index) const {
|
||||
return &m_children[index];
|
||||
}
|
||||
Reference in New Issue
Block a user