/[svn]/linuxsampler/trunk/src/network/lscpresultset.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscpresultset.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 222 by senkov, Sat Jun 12 07:29:37 2004 UTC revision 223 by schoenebeck, Sat Aug 21 11:43:53 2004 UTC
# Line 80  void LSCPResultSet::Add(String Label, fl Line 80  void LSCPResultSet::Add(String Label, fl
80          Add(Label, ss.str());          Add(Label, ss.str());
81  }  }
82    
83    void LSCPResultSet::Add(String Label, bool Value) {
84        String s = (Value) ? "true" : "false";
85        Add(Label, s);
86    }
87    
88  //Add a single string to the resultset  //Add a single string to the resultset
89  void LSCPResultSet::Add(String Value) {  void LSCPResultSet::Add(String Value) {
90          if (result_type != result_type_success)          if (result_type != result_type_success)

Legend:
Removed from v.222  
changed lines
  Added in v.223

  ViewVC Help
Powered by ViewVC