-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboolean.cxx
52 lines (41 loc) · 965 Bytes
/
boolean.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <stdexcept>
#include "boolean.hxx"
//////////////////
// Constructors //
//////////////////
boolean::boolean(const bool val, const bool constant)
: _val(val), _is_constant(constant) {}
boolean::boolean(const boolean & other)
: _val(other._val), _is_constant(other._is_constant) {}
///////////////
// Operators //
///////////////
auto boolean::operator=(const boolean & other) -> boolean &
{
if (this != &other) {
_val = other._val;
_is_constant = other._is_constant;
}
return *this;
}
bool boolean::operator==(const boolean & other) const
{
if (other._val == _val and other._is_constant == _is_constant)
return true;
else
return false;
}
bool boolean::operator!=(const boolean & other) const
{
return not (*this == other);
}
/////////////
// Methods //
/////////////
void boolean::set_val(const bool val)
{
if (_is_constant){
throw std::logic_error("Cannot modify constant `boolean'!");
}
_val = val;
}