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

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

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

revision 120 by senkov, Sat Jun 12 07:29:37 2004 UTC revision 397 by senkov, Mon Feb 21 04:28:50 2005 UTC
# Line 40  class LSCPResultSet { Line 40  class LSCPResultSet {
40          LSCPResultSet(String, int index = -1);          LSCPResultSet(String, int index = -1);
41          void Add(String);          void Add(String);
42          void Add(String, String);          void Add(String, String);
43            void Add(String, const char*);
44            void Add(int columns, char** argv);
45          void Add(String, float);          void Add(String, float);
46          void Add(String, int);          void Add(String, int);
47            void Add(String, bool);
48          void Add(int);          void Add(int);
49          void Error(String message = "Undefined Error", int code = 0);          void Error(String message = "Undefined Error", int code = 0);
50          void Error(LinuxSamplerException e);          void Error(LinuxSamplerException e);
# Line 54  class LSCPResultSet { Line 57  class LSCPResultSet {
57          int result_type;          int result_type;
58          int result_index;          int result_index;
59    
         template<class T> inline String ToString(T o) {  
             std::stringstream ss;  
             ss << o;  
             return ss.str();  
         }  
60  };  };
61    
62  #endif // __LSCPRESULTSET_H_  #endif // __LSCPRESULTSET_H_

Legend:
Removed from v.120  
changed lines
  Added in v.397

  ViewVC Help
Powered by ViewVC