#include <tree.hpp>
Public Member Functions | |
list_node () | |
list_node (list_node const &node) | |
void | add_child (boost::shared_ptr< component > comp) |
string | to_string () const |
component * | clone () const |
void | accept (const_visitor &v) const |
void | accept (visitor &v) |
Definition at line 441 of file tree.hpp.
jdl::list_node::list_node | ( | ) | [inline] |
jdl::list_node::list_node | ( | list_node const & | node | ) | [inline] |
void jdl::list_node::add_child | ( | boost::shared_ptr< component > | comp | ) | [inline] |
Definition at line 451 of file tree.hpp.
References jdl::abstract_node::children.
Referenced by jdl::create().
string list_node::to_string | ( | ) | const [virtual] |
Implements jdl::component.
Definition at line 269 of file tree.cpp.
References jdl::abstract_node::children.
component* jdl::list_node::clone | ( | ) | const [inline, virtual] |
void list_node::accept | ( | const_visitor & | v | ) | const [virtual] |
Implements jdl::abstract_node.
Definition at line 280 of file tree.cpp.
References jdl::const_visitor::visit().
void list_node::accept | ( | visitor & | v | ) | [virtual] |
Implements jdl::abstract_node.
Definition at line 283 of file tree.cpp.
References jdl::visitor::visit().