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