Bitstream Interpretation Library (BIL)  0.1
Element.cpp
Go to the documentation of this file.
1 
7 
8 using namespace bil;
9 
10 
12  m_name(),
13  m_options()
14 {
15 
16 }
17 
18 
19 std::string& Element::name()
20 {
21  return m_name;
22 }
23 
24 
25 const std::string& Element::name() const
26 {
27  return m_name;
28 }
29 
30 
32 {
33  return m_options;
34 }
35 
36 
38 {
39  return m_options;
40 }
41 
42 
44 {
45  m_name.clear();
46  m_options.clear();
47 }