forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade.h
39 lines (32 loc) · 1.46 KB
/
upgrade.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/***************************************************************************
upgrade.h - description
-------------------
begin : Mon Apr 13 2009
copyright : (C) 2009 by Sean M. Pappalardo
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef PREFERENCES_UPGRADE_H
#define PREFERENCES_UPGRADE_H
#include "preferences/usersettings.h"
class Upgrade {
public:
Upgrade();
~Upgrade();
UserSettingsPointer versionUpgrade(const QString& settingsPath);
bool isFirstRun() { return m_bFirstRun; };
bool rescanLibrary() {return m_bRescanLibrary; };
private:
bool askReanalyzeBeats();
bool askReScanLibrary();
bool m_bFirstRun;
bool m_bRescanLibrary;
};
#endif /* PREFERENCES_UPGRADE_H */