Major Update & Bug fixes:
- FileCore: - Replace dlNone -> dlLow - Remove temporary code used by CBaslerCamera - Function Core: - Add method SetDebugLevel() - Remove global parameter BaseMember; - JSONparse: - Print Bool parameters as true/false, not 1/0 - SelectCore: - Add method SetDebugLevel() - SignalCore: - Replace dlNone -> dlLow
This commit is contained in:
@@ -841,6 +841,12 @@ bool CJSONparse::PrintObject( TDataMember * Object, const int Indent )
|
||||
break;
|
||||
|
||||
case jtBool :
|
||||
if (!strcmp( Member->Value, "0" ))
|
||||
write( OutputHandle, "false", 5 );
|
||||
else
|
||||
write( OutputHandle, "true", 4 );
|
||||
break;
|
||||
|
||||
case jtInt :
|
||||
case jtFloat :
|
||||
write( OutputHandle, Member->Value, Member->Len );
|
||||
|
||||
Reference in New Issue
Block a user