Node in the naming tree. More...
Public Member Functions | |
NameNode () | |
Default constructor. | |
NameNode (const NameNode &nameNode) | |
Copy constructor. | |
NameNode (NameNode *parent, std::string name, Ptr< Object > object) | |
Constructor. | |
~NameNode () | |
Destructor. | |
NameNode & | operator= (const NameNode &rhs) |
Assignment operator. | |
Public Attributes | |
std::string | m_name |
The name of this NameNode. | |
std::map< std::string, NameNode * > | m_nameMap |
Children of this NameNode. | |
Ptr< Object > | m_object |
The object corresponding to this NameNode. | |
NameNode * | m_parent |
The parent NameNode. | |
ns3::NameNode::NameNode | ( | const NameNode & | nameNode | ) |
ns3::NameNode::~NameNode | ( | ) |
std::string ns3::NameNode::m_name |
The name of this NameNode.
Definition at line 65 of file names.cc.
Referenced by NameNode(), ns3::NamesPriv::NamesPriv(), ns3::NamesPriv::~NamesPriv(), ns3::NamesPriv::Clear(), ns3::NamesPriv::FindPath(), operator=(), and ns3::NamesPriv::Rename().
std::map<std::string, NameNode*> ns3::NameNode::m_nameMap |
Children of this NameNode.
Definition at line 70 of file names.cc.
Referenced by NameNode(), ns3::NamesPriv::Add(), ns3::NamesPriv::Clear(), ns3::NamesPriv::Find(), ns3::NamesPriv::Find(), ns3::NamesPriv::IsDuplicateName(), operator=(), and ns3::NamesPriv::Rename().
The object corresponding to this NameNode.
Definition at line 67 of file names.cc.
Referenced by NameNode(), ns3::NamesPriv::NamesPriv(), ns3::NamesPriv::Clear(), and operator=().
NameNode* ns3::NameNode::m_parent |
The parent NameNode.
Definition at line 63 of file names.cc.
Referenced by NameNode(), ns3::NamesPriv::NamesPriv(), ns3::NamesPriv::Clear(), ns3::NamesPriv::FindPath(), and operator=().