|
| tree (tree *a_parent, const std::string &a_dcl) |
|
virtual | ~tree () |
|
void | clear () |
|
void | dump_tree (std::ostream &a_out, const std::string &a_margin) |
|
Definition at line 21 of file columns.
◆ tree() [1/2]
tools::columns::tree::tree |
( |
tree * |
a_parent, |
|
|
const std::string & |
a_dcl |
|
) |
| |
|
inline |
Definition at line 26 of file columns.
28 mem::increment(s_class().c_str());
30 if(a_parent) a_parent->m_sub.push_back(
this);
◆ ~tree()
virtual tools::columns::tree::~tree |
( |
| ) |
|
|
inlinevirtual |
Definition at line 32 of file columns.
35 mem::decrement(s_class().c_str());
◆ tree() [2/2]
tools::columns::tree::tree |
( |
const tree & |
| ) |
|
|
inlineprotected |
◆ clear()
void tools::columns::tree::clear |
( |
| ) |
|
|
inline |
◆ dump_tree()
void tools::columns::tree::dump_tree |
( |
std::ostream & |
a_out, |
|
|
const std::string & |
a_margin |
|
) |
| |
|
inline |
Definition at line 46 of file columns.
47 if(
m_dcl.size()) a_out << a_margin <<
m_dcl << std::endl;
49 (*it)->dump_tree(a_out,a_margin+
" ");
◆ operator=()
tree& tools::columns::tree::operator= |
( |
const tree & |
| ) |
|
|
inlineprotected |
◆ m_dcl
std::string tools::columns::tree::m_dcl |
◆ m_parent
tree* tools::columns::tree::m_parent |
◆ m_sub
std::vector<tree*> tools::columns::tree::m_sub |
The documentation for this class was generated from the following file:
- /Users/barrand/private/dev/softinex/g4tools/g4tools/tools/columns