Bitstream Interpretation Library (BIL)  0.1
PIPBitValue.cpp
Go to the documentation of this file.
1 
7 
8 using namespace bil;
9 
10 
12  m_pipIndex(0),
13  m_bitValue(0)
14 {
15 
16 }
17 
18 
19 void PIPBitValue::pipIndex(size_t index)
20 {
21  m_pipIndex = index;
22 }
23 
24 
25 size_t PIPBitValue::pipIndex() const
26 {
27  return m_pipIndex;
28 }
29 
30 
31 void PIPBitValue::bitValue(boost::uint32_t value)
32 {
33  m_bitValue = value;
34 }
35 
36 
37 boost::uint32_t PIPBitValue::bitValue() const
38 {
39  return m_bitValue;
40 }
41 
42 
44 {
45  m_pipIndex = 0;
46  m_bitValue = 0;
47 }