/[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 225 by schoenebeck, Sun Aug 22 14:46:47 2004 UTC revision 1765 by persson, Sat Sep 6 16:44:42 2008 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6     *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 27  Line 28 
28  #include <string>  #include <string>
29  #include "../Sampler.h"  #include "../Sampler.h"
30  #include "../common/global.h"  #include "../common/global.h"
31  #include "../common/LinuxSamplerException.h"  #include "../common/Exception.h"
32    
33  using namespace LinuxSampler;  namespace LinuxSampler {
34    
35  /**  /**
36   * Helper class for producing result sets   * Helper class for producing result sets
# Line 41  class LSCPResultSet { Line 42  class LSCPResultSet {
42          void Add(String);          void Add(String);
43          void Add(String, String);          void Add(String, String);
44          void Add(String, const char*);          void Add(String, const char*);
45            void Add(int columns, char** argv);
46          void Add(String, float);          void Add(String, float);
47          void Add(String, int);          void Add(String, int);
48          void Add(String, bool);          void Add(String, bool);
49          void Add(int);          void Add(int);
50          void Error(String message = "Undefined Error", int code = 0);          void Error(String message = "Undefined Error", int code = 0);
51          void Error(LinuxSamplerException e);          void Error(Exception e);
52          void Warning(String message = "Undefined Warning", int code = 0);          void Warning(String message = "Undefined Warning", int code = 0);
53          String Produce(void);          String Produce(void);
54    
# Line 58  class LSCPResultSet { Line 60  class LSCPResultSet {
60    
61  };  };
62    
63    }
64    
65  #endif // __LSCPRESULTSET_H_  #endif // __LSCPRESULTSET_H_

Legend:
Removed from v.225  
changed lines
  Added in v.1765

  ViewVC Help
Powered by ViewVC