fixed StandardPaths commit lag

This commit is contained in:
Rafael 2016-03-28 13:27:45 +02:00
parent b3dab17229
commit 96c6d5072d
1 changed files with 11 additions and 6 deletions

View File

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