diff --git a/StandardPaths.h b/StandardPaths.h index e612640..e3c2386 100755 --- a/StandardPaths.h +++ b/StandardPaths.h @@ -15,14 +15,19 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . *****************************************************************************/ + #ifndef STANDARDPATHS_H #define STANDARDPATHS_H -#include -#if QT_VERSION >= 0x050000 -#include "StandardPaths5.h" -#else -#include "StandardPaths4.h" -#endif +#include + +class StandardPaths +{ +public: + StandardPaths(); + static QString dataLocation(); + static QString desktopLocation(); + static QString documentsLocation(); +}; #endif // STANDARDPATHS_H