Merge pull request #2098 from pxli168:patch-1
This commit is contained in:
commit
3782c324c4
@ -41,6 +41,8 @@ static String get_type_name(int type)
|
|||||||
{
|
{
|
||||||
if( type == Param::INT )
|
if( type == Param::INT )
|
||||||
return "int";
|
return "int";
|
||||||
|
if( type == Param::BOOLEAN )
|
||||||
|
return "bool";
|
||||||
if( type == Param::UNSIGNED_INT )
|
if( type == Param::UNSIGNED_INT )
|
||||||
return "unsigned";
|
return "unsigned";
|
||||||
if( type == Param::UINT64 )
|
if( type == Param::UINT64 )
|
||||||
@ -59,6 +61,12 @@ static void from_str(const String& str, int type, void* dst)
|
|||||||
std::stringstream ss(str.c_str());
|
std::stringstream ss(str.c_str());
|
||||||
if( type == Param::INT )
|
if( type == Param::INT )
|
||||||
ss >> *(int*)dst;
|
ss >> *(int*)dst;
|
||||||
|
else if( type == Param::BOOLEAN )
|
||||||
|
{
|
||||||
|
std::string temp;
|
||||||
|
ss >> temp;
|
||||||
|
*(bool*) dst = temp == "true";
|
||||||
|
}
|
||||||
else if( type == Param::UNSIGNED_INT )
|
else if( type == Param::UNSIGNED_INT )
|
||||||
ss >> *(unsigned*)dst;
|
ss >> *(unsigned*)dst;
|
||||||
else if( type == Param::UINT64 )
|
else if( type == Param::UINT64 )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user