Experimental usage.
[vlp.git] / src / global / AppConfiguration.h
index 23e2eb087574a94e87eced70eedb9d14e0c003e6..f1679cd525a086744e64cd9c136e170cb9024f68 100644 (file)
@@ -5,6 +5,11 @@
  */
 class AppConfiguration {
 protected:
+    config_t cfg;
 public:
-    static void error(config_t *cfg);
+    AppConfiguration(const char * fname);
+    int getInt(const char * path);
+    const char * getString(const char * path);
+    int error();
+    void release();
 };