summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorDetlev Casanova <detlev.casanova@gmail.com>2010-07-09 14:45:37 +0200
committerDetlev Casanova <detlev.casanova@gmail.com>2010-07-09 14:45:37 +0200
commit593766766d7d892b469acda29bdb8d848a68dd3b (patch)
tree5a66e0cc44bdfd9905d62a991d14f8ed130036d8 /src/config.h
parent69567b830f119ff74706bbdb6f58164201890623 (diff)
downloadlayman-593766766d7d892b469acda29bdb8d848a68dd3b.tar.gz
layman-593766766d7d892b469acda29bdb8d848a68dd3b.tar.bz2
layman-593766766d7d892b469acda29bdb8d848a68dd3b.zip
Add basic Config and DbBase implemntation (not tested)
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
new file mode 100644
index 0000000..e977cdc
--- /dev/null
+++ b/src/config.h
@@ -0,0 +1,12 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+#include <Python.h>
+
+typedef struct Config Config;
+
+Config *createConfig(const char *argv[], int argc);
+
+PyObject *_object(Config*);
+
+#endif