Bitstream Interpretation Library (BIL)
0.1
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
mappingdb
PIPBitValue.cpp
Go to the documentation of this file.
1
6
#include <
mappingdb/PIPBitValue.hpp
>
7
8
using namespace
bil;
9
10
11
PIPBitValue::PIPBitValue
():
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
43
void
PIPBitValue::clear
()
44
{
45
m_pipIndex = 0;
46
m_bitValue = 0;
47
}
Generated on Wed Aug 8 2012 21:57:40 for Bitstream Interpretation Library (BIL) by
1.8.1.1