A Discrete-Event Network Simulator
API
topology-reader-helper.h
Go to the documentation of this file.
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
34namespace ns3 {
35
42{
43public:
45
50 void SetFileName (const std::string fileName);
51
56 void SetFileType (const std::string fileType);
57
63
64private:
66 std::string m_fileName;
67 std::string m_fileType;
68};
69
70} // namespace ns3
71
72
73#endif /* TOPOLOGY_READER_HELPER_H */
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
Helper class which makes it easier to configure and use a generic TopologyReader.
std::string m_fileName
Name of the input file.
void SetFileType(const std::string fileType)
Sets the input file type.
Ptr< TopologyReader > m_inputModel
Smart pointer to the actual topology model.
Ptr< TopologyReader > GetTopologyReader()
Gets a Ptr<TopologyReader> to the actual TopologyReader.
void SetFileName(const std::string fileName)
Sets the input file name.
std::string m_fileType
Type of the input file (e.g., "Inet", "Orbis", etc.).
Every class exported by the ns3 library is enclosed in the ns3 namespace.