A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
topology-reader-helper.h
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2010 Universita' di Firenze, Italy
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Tommaso Pecorella (tommaso.pecorella@unifi.it)
19  * Author: Valerio Sartini (valesar@gmail.com)
20  */
21 
22 #ifndef TOPOLOGY_READER_HELPER_H
23 #define TOPOLOGY_READER_HELPER_H
24 
25 #include "ns3/topology-reader.h"
26 #include <string>
27 
28 namespace ns3 {
29 
36 {
37 public:
39 
44  void SetFileName (const std::string fileName);
45 
50  void SetFileType (const std::string fileType);
51 
57 
58 private:
59  Ptr<TopologyReader> m_inFile;
60  std::string m_fileName;
61  std::string m_fileType;
62 };
63 
64 } // namespace ns3
65 
66 
67 #endif /* TOPOLOGY_READER_HELPER_H */
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
void SetFileName(const std::string fileName)
Sets the input file name.
Ptr< TopologyReader > GetTopologyReader()
Gets a Ptr<TopologyReader> to the actual TopologyReader.
void SetFileType(const std::string fileType)
Sets the input file type. Supported file types are "Orbis", "Inet", "Rocketfuel". ...
Helper class which makes it easier to configure and use a generic TopologyReader. ...