Blame view

Giac_maj/epsilon-giac/apps/node.cpp 221 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
  #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);
  }