summaryrefslogtreecommitdiff
path: root/src/python.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-19 19:28:11 +0000
committerDana Jansens <danakj@orodu.net>2003-02-19 19:28:11 +0000
commitfeaf3ac4e5847d27e3747b09e7443915afa97b0b (patch)
tree6548af5ed3f15b15b2d3e4a66a2b9795b0a4e18b /src/python.hh
parent1dac42d9ed074bcd44f9d1016b0971ae473cc2eb (diff)
time to refactor shit hard
Diffstat (limited to 'src/python.hh')
-rw-r--r--src/python.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/python.hh b/src/python.hh
index 6acc538b..c1655503 100644
--- a/src/python.hh
+++ b/src/python.hh
@@ -19,6 +19,7 @@ extern "C" {
#include <string>
#include <vector>
+
namespace ob {
class Client;
@@ -232,6 +233,10 @@ void python_destroy();
//! Returns 0 for success, 1 for failing to open the file, 2 for an exception
int python_exec(const std::string &path);
+bool python_get_long(const char *name, long *value);
+bool python_get_string(const char *name, otk::ustring *value);
+bool python_get_stringlist(const char *name, std::vector<otk::ustring> *value);
+
}