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