Example #1
0
bool SDimensionParser::ParseValue(const SStringW & strValue, SLayoutSize & value)
{
	value.parseString(strValue);
	return true;
}
Example #2
0
	SLayoutSize SLayoutSize::fromString(const SStringW & strSize)
	{
		SLayoutSize ret;
		ret.parseString(strSize);
		return ret;
	}