Bitstream Interpretation Library (BIL)  0.1
Type1Packet.cpp
Go to the documentation of this file.
1 
8 
9 using namespace bil;
10 
11 
13  m_registerAddress()
14 {
15 
16 }
17 
18 
20 {
21  return new Type1Packet(*this);
22 }
23 
24 
25 void Type1Packet::accept(PacketVisitor& visitor) const
26 {
27  visitor.visit(*this);
28 }
29 
30 
32 {
33  m_registerAddress = address;
34 }
35 
36 
38 {
39  return m_registerAddress;
40 }
41 
42 
44 {
46  m_registerAddress = 0;
47 }