implement and re-enable default ac3 option
[enigma2.git] / lib / base / nconfig.h
1 #ifndef __lib_base_nconfig_h_
2 #define __lib_base_nconfig_h_
3
4 #include <lib/python/python.h>
5
6 class ePythonConfigQuery
7 {
8         static PyObject *m_queryFunc;
9         ePythonConfigQuery() {}
10         ~ePythonConfigQuery() {}
11 public:
12         static void setQueryFunc(PyObject *func);
13 #ifndef SWIG
14         static RESULT getConfigValue(const char *key, std::string &value);
15 #endif
16 };
17
18 #endif // __lib_base_nconfig_h_