--- linuxsampler/trunk/src/network/lscpresultset.cpp 2004/08/21 11:35:50 222 +++ linuxsampler/trunk/src/network/lscpresultset.cpp 2004/08/21 11:43:53 223 @@ -80,6 +80,11 @@ Add(Label, ss.str()); } +void LSCPResultSet::Add(String Label, bool Value) { + String s = (Value) ? "true" : "false"; + Add(Label, s); +} + //Add a single string to the resultset void LSCPResultSet::Add(String Value) { if (result_type != result_type_success)