author | Tom Henderson <tomh@tomh.org> |
Thu, 29 May 2008 23:24:10 -0700 | |
changeset 3182 | 61fe7fe81ebd |
parent 2965 | 4b28e9740e3b |
child 3763 | e46e361a4262 |
permissions | -rw-r--r-- |
mathieu@2581 | 1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
mathieu@2581 | 2 |
/* |
mathieu@2581 | 3 |
* Copyright (c) 2008 INRIA |
mathieu@2581 | 4 |
* |
mathieu@2581 | 5 |
* This program is free software; you can redistribute it and/or modify |
mathieu@2581 | 6 |
* it under the terms of the GNU General Public License version 2 as |
mathieu@2581 | 7 |
* published by the Free Software Foundation; |
mathieu@2581 | 8 |
* |
mathieu@2581 | 9 |
* This program is distributed in the hope that it will be useful, |
mathieu@2581 | 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
mathieu@2581 | 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
mathieu@2581 | 12 |
* GNU General Public License for more details. |
mathieu@2581 | 13 |
* |
mathieu@2581 | 14 |
* You should have received a copy of the GNU General Public License |
mathieu@2581 | 15 |
* along with this program; if not, write to the Free Software |
mathieu@2581 | 16 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
mathieu@2581 | 17 |
* |
mathieu@2581 | 18 |
* Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr> |
mathieu@2581 | 19 |
*/ |
mathieu@2453 | 20 |
#ifndef BOOLEAN_H |
mathieu@2453 | 21 |
#define BOOLEAN_H |
mathieu@2371 | 22 |
|
mathieu@2438 | 23 |
#include "attribute.h" |
mathieu@2451 | 24 |
#include "attribute-helper.h" |
mathieu@2371 | 25 |
|
mathieu@2371 | 26 |
namespace ns3 { |
mathieu@2371 | 27 |
|
mathieu@2584 | 28 |
/** |
tomh@3182 | 29 |
* \ingroup attribute |
tomh@3182 | 30 |
* |
mathieu@2584 | 31 |
* \brief Hold a bool native type |
mathieu@2584 | 32 |
* |
mathieu@2928 | 33 |
* \anchor bool |
mathieu@2928 | 34 |
* |
mathieu@2584 | 35 |
* This class can be used to hold bool variables |
mathieu@2584 | 36 |
* which must go through the Attribute system. |
mathieu@2584 | 37 |
*/ |
mathieu@2965 | 38 |
class BooleanValue : public AttributeValue |
mathieu@2371 | 39 |
{ |
mathieu@2371 | 40 |
public: |
mathieu@2965 | 41 |
BooleanValue (); |
mathieu@2965 | 42 |
BooleanValue (bool value); |
mathieu@2371 | 43 |
void Set (bool value); |
mathieu@2371 | 44 |
bool Get (void) const; |
mathieu@2965 | 45 |
|
mathieu@2441 | 46 |
operator bool () const; |
mathieu@2372 | 47 |
|
mathieu@2965 | 48 |
virtual Ptr<AttributeValue> Copy (void) const; |
mathieu@2965 | 49 |
virtual std::string SerializeToString (Ptr<const AttributeChecker> checker) const; |
mathieu@2965 | 50 |
virtual bool DeserializeFromString (std::string value, Ptr<const AttributeChecker> checker); |
mathieu@2371 | 51 |
private: |
mathieu@2371 | 52 |
bool m_value; |
mathieu@2371 | 53 |
}; |
mathieu@2371 | 54 |
|
mathieu@2965 | 55 |
std::ostream & operator << (std::ostream &os, const BooleanValue &value); |
mathieu@2410 | 56 |
|
mathieu@2441 | 57 |
ATTRIBUTE_CHECKER_DEFINE (Boolean); |
mathieu@2441 | 58 |
ATTRIBUTE_ACCESSOR_DEFINE (Boolean); |
mathieu@2371 | 59 |
|
mathieu@2371 | 60 |
} // namespace ns3 |
mathieu@2371 | 61 |
|
mathieu@2453 | 62 |
#endif /* BOOLEAN_H */ |