22 #ifndef TOPOLOGY_READER_H 
   23 #define TOPOLOGY_READER_H 
   29 #include "ns3/object.h" 
   30 #include "ns3/node-container.h" 
   96     std::string 
GetAttribute (
const std::string &name) 
const;
 
  110     void SetAttribute (
const std::string &name, 
const std::string &value);
 
  180   ConstLinksIterator 
LinksEnd (
void) 
const;
 
Ptr< Node > GetFromNode(void) const 
Returns a Ptr to the "from" node of the link. 
 
static TypeId GetTypeId(void)
Get the type ID. 
 
ConstLinksIterator LinksBegin(void) const 
Returns an iterator to the the first link in this block. 
 
std::string GetFileName(void) const 
Returns the input file name. 
 
std::list< Link > m_linksList
The container of the links between the nodes. 
 
std::string GetAttribute(const std::string &name) const 
Returns the value of a link attribute. 
 
TopologyReader & operator=(const TopologyReader &)
Copy constructor. 
 
bool LinksEmpty(void) const 
Checks if the block contains any links. 
 
void AddLink(Link link)
Adds a link to the topology. 
 
virtual ~TopologyReader()
 
std::string GetFromNodeName(void) const 
Returns the name of the "from" node of the link. 
 
Ptr< Node > GetToNode(void) const 
Returns a Ptr to the "to" node of the link. 
 
Inner class holding the details about a link between two nodes. 
 
Interface for input file readers management. 
 
int LinksSize(void) const 
Returns the number of links in this block. 
 
std::map< std::string, std::string > m_linkAttr
Container of the link attributes (if any). 
 
void SetFileName(const std::string &fileName)
Sets the input file name. 
 
std::list< Link >::const_iterator ConstLinksIterator
Constant iterator to the list of the links. 
 
std::map< std::string, std::string >::const_iterator ConstAttributesIterator
Constant iterator to scan the map of link attributes. 
 
Every class exported by the ns3 library is enclosed in the ns3 namespace. 
 
keep track of a set of node pointers. 
 
std::string m_fileName
The name of the input file. 
 
Ptr< Node > m_toPtr
The node the links is directed to. 
 
bool GetAttributeFailSafe(const std::string &name, std::string &value) const 
Returns the value of a link attribute. 
 
void SetAttribute(const std::string &name, const std::string &value)
Sets an arbitrary link attribute. 
 
std::string m_fromName
Name of the node the links originates from. 
 
std::string m_toName
Name of the node the links is directed to. 
 
std::string GetToNodeName(void) const 
Returns the name of the "to" node of the link. 
 
virtual NodeContainer Read(void)=0
Main topology reading function. 
 
ConstAttributesIterator AttributesBegin(void) const 
Returns an iterator to the begin of the attributes. 
 
ConstAttributesIterator AttributesEnd(void) const 
Returns an iterator to the end of the attributes. 
 
A base class which provides memory management and object aggregation. 
 
Ptr< Node > m_fromPtr
The node the links originates from. 
 
a unique identifier for an interface. 
 
ConstLinksIterator LinksEnd(void) const 
Returns an iterator to the the last link in this block.