Bitstream Interpretation Library (BIL)
0.1
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
bitstream
DummyWord.cpp
Go to the documentation of this file.
1
6
#include <
bitstream/DummyWord.hpp
>
7
#include <
bitstream/PacketVisitor.hpp
>
8
9
using namespace
bil;
10
11
12
DummyWord::DummyWord
():
13
m_value()
14
{
15
16
}
17
18
19
DummyWord
*
DummyWord::clone
()
const
20
{
21
return
new
DummyWord
(*
this
);
22
}
23
24
25
void
DummyWord::accept
(
PacketVisitor
& visitor)
const
26
{
27
visitor.
visit
(*
this
);
28
}
29
30
31
void
DummyWord::value
(boost::uint32_t dummyValue)
32
{
33
m_value = dummyValue;
34
}
35
36
37
boost::uint32_t
DummyWord::value
()
const
38
{
39
return
m_value;
40
}
Generated on Wed Aug 8 2012 21:57:40 for Bitstream Interpretation Library (BIL) by
1.8.1.1