Bitstream Interpretation Library (BIL)
0.1
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
xdlrc
model
PrimitiveSite.cpp
Go to the documentation of this file.
1
6
#include <
xdlrc/model/PrimitiveSite.hpp
>
7
8
using namespace
bil;
9
10
11
PrimitiveSite::PrimitiveSite
():
12
m_name(),
13
m_bonded(false)
14
{
15
16
}
17
18
19
std::string&
PrimitiveSite::name
()
20
{
21
return
m_name;
22
}
23
24
25
const
std::string&
PrimitiveSite::name
()
const
26
{
27
return
m_name;
28
}
29
30
31
void
PrimitiveSite::isBonded
(
bool
flag)
32
{
33
m_bonded = flag;
34
}
35
36
37
bool
PrimitiveSite::isBonded
()
const
38
{
39
return
m_bonded;
40
}
41
42
43
void
PrimitiveSite::clear
()
44
{
45
m_name.clear();
46
m_bonded =
false
;
47
}
Generated on Wed Aug 8 2012 21:57:41 for Bitstream Interpretation Library (BIL) by
1.8.1.1