A Discrete-Event Network Simulator
API
boolean.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 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  * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 #ifndef BOOLEAN_H
21 #define BOOLEAN_H
22 
23 #include "attribute.h"
24 #include "attribute-helper.h"
25 
32 namespace ns3 {
33 
35 {
36 public:
37  BooleanValue ();
43  BooleanValue (bool value);
44  void Set (bool value);
45  bool Get (void) const;
46  template <typename T>
47  bool GetAccessor (T &v) const;
48 
53  operator bool () const;
54 
55  virtual Ptr<AttributeValue> Copy (void) const;
56  virtual std::string SerializeToString (Ptr<const AttributeChecker> checker) const;
57  virtual bool DeserializeFromString (std::string value, Ptr<const AttributeChecker> checker);
58 private:
59  bool m_value;
60 };
61 
62 template <typename T>
63 bool BooleanValue::GetAccessor (T &v) const
64 {
65  v = T (m_value);
66  return true;
67 }
68 
78 std::ostream & operator << (std::ostream &os, const BooleanValue &value);
79 
82 
83 } // namespace ns3
84 
85 #endif /* BOOLEAN_H */
virtual Ptr< AttributeValue > Copy(void) const
Definition: boolean.cc:75
bool Get(void) const
Definition: boolean.cc:51
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
AttributeValue implementation for Boolean.
Definition: boolean.h:34
Hold a value for an Attribute.
Definition: attribute.h:68
virtual bool DeserializeFromString(std::string value, Ptr< const AttributeChecker > checker)
Definition: boolean.cc:96
#define ATTRIBUTE_CHECKER_DEFINE(type)
Declare the AttributeChecker class Checker and the MakeTypeChecker function for class type...
void Set(bool value)
Set the value.
Definition: boolean.cc:45
bool GetAccessor(T &v) const
Access the Boolean value as type T.
Definition: boolean.h:63
ns3::AttributeValue, ns3::AttributeAccessor and ns3::AttributeChecker declarations.
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Declaration of Attribute helper macros.
virtual std::string SerializeToString(Ptr< const AttributeChecker > checker) const
Definition: boolean.cc:82
#define ATTRIBUTE_ACCESSOR_DEFINE(type)
Define the attribute accessor functions MakeTypeAccessor for class type.
bool m_value
The stored Boolean instance.
Definition: boolean.h:59