aboutsummaryrefslogtreecommitdiff
path: root/lib/base/nconfig.h
blob: 2c87491a0b374215a40ed79ca89230711052f879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __lib_base_nconfig_h_
#define __lib_base_nconfig_h_

#include <lib/python/python.h>

class ePythonConfigQuery
{
	static PyObject *m_queryFunc;
	ePythonConfigQuery() {}
	~ePythonConfigQuery() {}
public:
	static void setQueryFunc(PyObject *func);
#ifndef SWIG
	static RESULT getConfigValue(const char *key, std::string &value);
#endif
};

#endif // __lib_base_nconfig_h_