-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindexed_signal.hpp
107 lines (92 loc) · 2.77 KB
/
indexed_signal.hpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* signal.hpp -
* @author: jonathan beard
* @version: wed dec 31 15:14:56 2014
*
* copyright 2014 jonathan beard
*
* licensed under the apache license, version 2.0 (the "license");
* you may not use this file except in compliance with the license.
* you may obtain a copy of the license at:
*
* http://www.apache.org/licenses/license-2.0
*
* unless required by applicable law or agreed to in writing, software
* distributed under the license is distributed on an "as is" basis,
* without warranties or conditions of any kind, either express or implied.
* see the license for the specific language governing permissions and
* limitations under the license.
*/
#ifndef mplindexedsignal_hpp
#define mplindexedsignal_hpp 1
#include <cstddef>
#include "signal.hpp"
namespace mpl
{
struct indexed_signal
{
using index_t = std::size_t;
/**
* default constructor, doesn't do much.
*/
constexpr indexed_signal() = default;
/**
* constructor with set index as param
*/
constexpr indexed_signal( const mpl::signal s,
const index_t n ) : sig( s ),
index( n ){}
/**
* copy constructor, just copies signal
* by value, and index.
*/
constexpr indexed_signal( const indexed_signal &other ) : sig( other.sig ),
index( other.index )
{}
/**
* return just the signal itself, no indexing
* @return mpl::signal
*/
constexpr operator const mpl::signal& () noexcept
{
return( sig );
}
/**
* getindex - return the position of this signal with
* respect to the current array
*/
constexpr index_t getindex() noexcept
{
return( index );
}
/**
* various equality operators.
*/
constexpr bool operator ==( const indexed_signal &other )
{
return( other.sig == sig && other.index == index );
}
constexpr bool operator !=( const indexed_signal &other )
{
return( other.sig != sig || other.index != index );
}
constexpr bool operator ==( const indexed_signal &&other )
{
return( other.sig == sig && other.index == index );
}
constexpr bool operator !=( const indexed_signal &&other )
{
return( other.sig != sig || other.index != index );
}
friend std::ostream& operator << (std::ostream &os, const indexed_signal &s )
{
os << s.index << " - " << mpl::signal_strings[ s.sig ];
return( os );
}
#pragma pack( push, 1 )
const mpl::signal sig = mpl::none;
const index_t index = 0;
#pragma pack( pop )
};
} /** end namespace mpl **/
#endif /* end mplindexedsignal_hpp */