##// END OF EJS Templates
added quick fileName generation for data export, and fixed wrong date reading...
added quick fileName generation for data export, and fixed wrong date reading on cassini data files.

File last commit:

r5:92e4585e8fab default
r10:63067c6877ba 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