Files
Upsilon/apps/node.cpp
Émilie Feral ac0fdeeca8 [apps] create an abstract class for node
Change-Id: I3a946df720c37ec2b087cf6131ea886da3e26c95
2016-11-10 17:26:07 +01:00

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);
}