-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisibility_index.h
More file actions
85 lines (68 loc) · 1.26 KB
/
visibility_index.h
File metadata and controls
85 lines (68 loc) · 1.26 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef VISIBILITY_INDEX_H
#define VISIBILITY_INDEX_H
template <typename IndexType>
class Visibility_index
{
public:
/// \name template parameters
//@{
typedef IndexType Index_type;
//@}
/// default constructor
Visibility_index() :
assigned_(false),
value_()
{
}
/// copy constructor
Visibility_index(const Visibility_index& other) :
assigned_(other.assigned_),
value_(other.value_)
{
}
/// wrapping constructor
Visibility_index(const Index_type& other) :
assigned_(true),
value_(other)
{
}
/// assignment operator
const Visibility_index& operator =(const Visibility_index& other)
{
assigned_ = other.assigned();
if(other.assigned())
{
value_ = other.value_;
}
return *this;
}
/// wrapping assignment operator
const Visibility_index& operator =(const Index_type& other)
{
assigned_ = true;
value_ = other;
return *this;
}
/// unwrapping operator
operator Index_type() const
{
assert(assigned_);
return value_;
}
/// \return true if a value has been assigned
bool assigned() const
{
return assigned_;
}
/// virtually unassigns value
void reset()
{
assigned_ = false;
}
private:
/// true if a value has been assigned
bool assigned_;
/// index value
Index_type value_;
};
#endif // VISIBILITY_INDEX_H