forked from organicmaps/organicmaps
Added IsFirstLaunch() method to settings
This commit is contained in:
parent
427f1fc8cd
commit
d213429d76
2 changed files with 14 additions and 3 deletions
|
@ -17,6 +17,8 @@
|
|||
#include "../std/iostream.hpp"
|
||||
|
||||
|
||||
#define FIRST_LAUNCH_KEY "FirstLaunchOnDate"
|
||||
|
||||
static char const DELIM_CHAR = '=';
|
||||
|
||||
namespace Settings
|
||||
|
@ -317,14 +319,19 @@ namespace Settings
|
|||
|
||||
bool IsFirstLaunchForDate(int date)
|
||||
{
|
||||
char const * key = "FirstLaunchOnDate";
|
||||
int savedDate;
|
||||
if (!Get(key, savedDate) || savedDate < date)
|
||||
if (!Get(FIRST_LAUNCH_KEY, savedDate) || savedDate < date)
|
||||
{
|
||||
Set(key, date);
|
||||
Set(FIRST_LAUNCH_KEY, date);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
bool IsFirstLaunch()
|
||||
{
|
||||
int unused;
|
||||
return !Get(FIRST_LAUNCH_KEY, unused);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,4 +42,8 @@ namespace Settings
|
|||
/// Use this function for running some stuff once according to date.
|
||||
/// @param[in] date Current date in format yymmdd.
|
||||
bool IsFirstLaunchForDate(int date);
|
||||
/// @Returns true when user launched app first time
|
||||
/// Use to track new installs
|
||||
/// @warning Can be used only before IsFirstLaunchForDate(int) call
|
||||
bool IsFirstLaunch();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue