mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
14 lines
221 B
C++
14 lines
221 B
C++
#include "node.h"
|
|
|
|
int Node::numberOfChildren() const {
|
|
return m_numberOfChildren;
|
|
}
|
|
|
|
I18n::Message Node::label() const {
|
|
return m_label;
|
|
}
|
|
|
|
bool Node::isNull() const {
|
|
return (m_label == I18n::Message::Default);
|
|
}
|