##// END OF EJS Templates
Added Python Console and some Wrappers....
Added Python Console and some Wrappers. More code cleaning, WIP.

File last commit:

r5:92e4585e8fab default
r5:92e4585e8fab default
Show More
qlop.h
15 lines | 483 B | text/x-c | CLexer
#ifndef QLOP
#define QLOP
#ifdef WIN32
#define QLOP_PLUGINS_INSTALL_PATH qApp->applicationDirPath()+"/plugins"
#define QLOP_CONFIG_PATH qApp->applicationDirPath()+"/config"
#define PYMODULES qApp->applicationDirPath()+"/python"
#else
#ifdef UNIX
#define QLOP_PLUGINS_INSTALL_PATH QDir::homePath()+"/.QLop/plugins"
#define QLOP_CONFIG_PATH QDir::homePath()+"/.QLop/config"
#define PYMODULES "/etc/QLop/python"
#endif
#endif
#endif // QLOP