Rudiments
parameterstring.h
1 // Copyright (c) 1999-2018 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 
16 class RUDIMENTS_DLLSPEC parameterstring {
17  public:
18 
21 
23  ~parameterstring();
24 
27  void setDelimiter(char delim);
28 
30  bool parse(const char *string);
31 
34  const char *getValue(const char *name);
35 
39  void clear();
40 
41  #include <rudiments/private/parameterstring.h>
42 };
43 
44 #endif
Definition: parameterstring.h:16