-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboolean.hxx
44 lines (30 loc) · 985 Bytes
/
boolean.hxx
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
#ifndef __simplefit_boolean__
#define __simplefit_boolean__
#include "function_base.hxx"
class boolean : public function_base {
public:
// Default constructor
boolean(const bool val=true, const bool constant=false);
// Copy constructor
boolean(const boolean & other);
// Destructor
~boolean() {}
// Assignment operator
virtual boolean & operator=(const boolean & other);
// Comparison operator
virtual bool operator==(const boolean & other) const;
// Inequality operator
virtual bool operator!=(const boolean & other) const;
// Automatic type conversion to double
inline virtual operator double () const { return _val; }
// Automatic type conversion to boolean
inline operator bool () const { return _val; }
// Ask if constant
inline bool is_constant() const { return _is_constant; }
// Setter
void set_val(const bool val);
private:
bool _val; // Value
bool _is_constant; // Constant flag
};
#endif // __simplefit_boolean__