1 /*!
2 	@file
3 	@author		Albert Semenov
4 	@date		07/2012
5 */
6 
7 #include "DataPropertyInfo.h"
8 
9 namespace tools
10 {
11 
deserialization(pugi::xml_node _node)12 	void DataPropertyInfo::deserialization(pugi::xml_node _node)
13 	{
14 		mName = _node.select_single_node("Name").node().child_value();
15 		mType = _node.select_single_node("Type").node().child_value();
16 	}
17 
getName() const18 	const std::string& DataPropertyInfo::getName() const
19 	{
20 		return mName;
21 	}
22 
getType() const23 	const std::string& DataPropertyInfo::getType() const
24 	{
25 		return mType;
26 	}
27 }
28