int PropertySet::GetNumericProperty(const string &name) const 
	{
		return atoi(GetLiteralProperty(name).c_str());
	}
Example #2
0
	float PropertySet::GetFloatProperty(const string &name) const
	{
		return float(atof(GetLiteralProperty(name).c_str()));
	}