示例#1
0
I_Value* toValue_float( float inValue )
{
	I_Value* pValue = new FBL::Value_float();
	
	pValue->put_Float( inValue );
	
	return pValue;
}