libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
DefaultBool.hpp
1 
18 //== BEGINNING OF CODE ===============================================================
19 
20 #ifndef __SAGITTARIUS_DEFAULT_BOOL_H_
21 #define __SAGITTARIUS_DEFAULT_BOOL_H_
22 
23 //== INCLUDES ========================================================================
24 
25 //==DEFINES/TYPES===================================//
26 
27 namespace Sagittarius
28 {
29 
31  {
32  private:
33  bool b;
34  public:
35  DefaultFalseBool() : b(false) {}
36  DefaultFalseBool(const DefaultFalseBool& other) : b(other.b) {}
37  bool& get() { return b; }
38  const bool& get() const { return b; }
39  };
40 
42  {
43  private:
44  bool b;
45  public:
46  DefaultTrueBool() : b(true) {}
47  DefaultTrueBool(const DefaultTrueBool& other) : b(other.b) {}
48  bool& get() { return b; }
49  const bool& get() const { return b; }
50  };
51 
52 }
53 
54 #endif
Definition: DefaultBool.hpp:27
Definition: DefaultBool.hpp:30
Definition: DefaultBool.hpp:41