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