A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
config-store
model
raw-text-config.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2009 INRIA
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: Mathieu Lacage <mathieu.lacage@cutebugs.net>
19
*/
20
21
#ifndef RAW_TEXT_CONFIG_H
22
#define RAW_TEXT_CONFIG_H
23
24
#include <string>
25
#include <fstream>
26
#include "
file-config.h
"
27
28
namespace
ns3
{
29
35
class
RawTextConfigSave
:
public
FileConfig
36
{
37
public
:
38
RawTextConfigSave
();
39
virtual
~RawTextConfigSave
();
40
virtual
void
SetFilename
(std::string filename);
41
virtual
void
Default
(
void
);
42
virtual
void
Global
(
void
);
43
virtual
void
Attributes
(
void
);
44
private
:
46
std::ofstream *
m_os
;
47
};
48
54
class
RawTextConfigLoad
:
public
FileConfig
55
{
56
public
:
57
RawTextConfigLoad
();
58
virtual
~RawTextConfigLoad
();
59
virtual
void
SetFilename
(std::string filename);
60
virtual
void
Default
(
void
);
61
virtual
void
Global
(
void
);
62
virtual
void
Attributes
(
void
);
63
private
:
69
std::string
Strip
(std::string value);
71
std::ifstream *
m_is
;
72
};
73
74
}
// namespace ns3
75
76
#endif
/* RAW_TEXT_CONFIG_H */
ns3::RawTextConfigSave
A class to enable saving of configuration store in a raw text file.
Definition:
raw-text-config.h:35
ns3::RawTextConfigLoad::Attributes
virtual void Attributes(void)
Load or save the attributes values.
Definition:
raw-text-config.cc:186
file-config.h
ns3::RawTextConfigLoad::SetFilename
virtual void SetFilename(std::string filename)
Set the file name.
Definition:
raw-text-config.cc:131
ns3::RawTextConfigSave::SetFilename
virtual void SetFilename(std::string filename)
Set the file name.
Definition:
raw-text-config.cc:49
ns3::RawTextConfigLoad::~RawTextConfigLoad
virtual ~RawTextConfigLoad()
Definition:
raw-text-config.cc:120
ns3::RawTextConfigSave::~RawTextConfigSave
virtual ~RawTextConfigSave()
Definition:
raw-text-config.cc:38
ns3::FileConfig
base class for ConfigStore classes using files
Definition:
file-config.h:33
ns3::RawTextConfigSave::RawTextConfigSave
RawTextConfigSave()
Definition:
raw-text-config.cc:33
ns3::RawTextConfigLoad::Global
virtual void Global(void)
Load or save the global values.
Definition:
raw-text-config.cc:167
ns3::RawTextConfigLoad::RawTextConfigLoad
RawTextConfigLoad()
Definition:
raw-text-config.cc:115
ns3::RawTextConfigLoad::Strip
std::string Strip(std::string value)
Strip out attribute value.
Definition:
raw-text-config.cc:138
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::RawTextConfigSave::Attributes
virtual void Attributes(void)
Load or save the attributes values.
Definition:
raw-text-config.cc:93
ns3::RawTextConfigSave::Default
virtual void Default(void)
Load or save the default values.
Definition:
raw-text-config.cc:56
ns3::RawTextConfigSave::m_os
std::ofstream * m_os
Config store output stream.
Definition:
raw-text-config.h:46
ns3::RawTextConfigLoad::m_is
std::ifstream * m_is
Config store input stream.
Definition:
raw-text-config.h:71
ns3::RawTextConfigSave::Global
virtual void Global(void)
Load or save the global values.
Definition:
raw-text-config.cc:81
ns3::RawTextConfigLoad
A class to enable loading of configuration store from a raw text file.
Definition:
raw-text-config.h:54
ns3::RawTextConfigLoad::Default
virtual void Default(void)
Load or save the default values.
Definition:
raw-text-config.cc:148
Generated on Wed Nov 7 2018 10:01:48 for ns-3 by
1.8.14