Rudiments
parameterstring.h
1 // Copyright (c) 2003 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_PARAMETERSTRING_H
5 #define RUDIMENTS_PARAMETERSTRING_H
6 
7 #include <rudiments/private/parameterstringincludes.h>
8 
9 class parameterstringprivate;
10 
18 class RUDIMENTS_DLLSPEC parameterstring {
19  public:
20 
23 
25  ~parameterstring();
26 
29  void setDelimiter(char delim);
30 
32  bool parse(const char *string);
33 
36  const char *getValue(const char *name);
37 
41  void clear();
42 
43  #include <rudiments/private/parameterstring.h>
44 };
45 
46 #endif
Definition: parameterstring.h:18