Rudiments
mvcproperties.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more informations.
3 
4 #ifndef RUDIMENTS_PROPERTIES_H
5 #define RUDIMENTS_PROPERTIES_H 1
6 
7 #include <rudiments/private/mvcpropertiesincludes.h>
8 
9 class mvcproperties {
10  public:
11  mvcproperties();
12  virtual ~mvcproperties();
13 
14  bool parseFile(const char *filename);
15  bool parseString(const char *string);
16 
17  const char *getValue(const char *parameter);
18 
19  #include <rudiments/private/mvcproperties.h>
20 };
21 
22 #endif
Definition: mvcproperties.h:9