Project

General

Profile

SO3Engine
SO3DataScol.cpp
Go to the documentation of this file.
1
8
9namespace SO3
10{
11
12SData::SData()
13{
14 // Forbiden (private)
15}
16
17SData::SData(const std::string& dataName)
18{
19 name = dataName;
20}
21
23{
24}
25
26std::string SData::GetName() const
27{
28 return name;
29}
30
32{
33 return mUserObjectBindings;
34}
35
37{
38 return mUserObjectBindings;
39}
40
41}
SUserObjectBindings & GetUserObjectBindings()
std::string GetName() const
virtual ~SData()
std::string name
Definition SO3DataScol.h:44