diff options
author | Eugene Sandulenko | 2016-03-31 09:31:57 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-03-31 09:31:57 +0200 |
commit | 08e7f0ab9179691fe869bab8fee5585364c846c7 (patch) | |
tree | 6df2d0906df9c9ca04ed03e76936ceaef82d32b5 /common/updates.h | |
parent | 556b7ffa29fc7f98904fce4e2fdeb07a5369558d (diff) | |
download | scummvm-rg350-08e7f0ab9179691fe869bab8fee5585364c846c7.tar.gz scummvm-rg350-08e7f0ab9179691fe869bab8fee5585364c846c7.tar.bz2 scummvm-rg350-08e7f0ab9179691fe869bab8fee5585364c846c7.zip |
UPDATES: Got rid of hardcoded update intervals list
Diffstat (limited to 'common/updates.h')
-rw-r--r-- | common/updates.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/common/updates.h b/common/updates.h index 8863a58931..986d56ce24 100644 --- a/common/updates.h +++ b/common/updates.h @@ -20,8 +20,8 @@ * */ -#ifndef BACKENDS_UPDATES_ABSTRACT_H -#define BACKENDS_UPDATES_ABSTRACT_H +#ifndef COMMON_UPDATES_H +#define COMMON_UPDATES_H #if defined(USE_UPDATES) @@ -93,10 +93,13 @@ public: * @return the update check interval. */ virtual int getUpdateCheckInterval() { return kUpdateIntervalNotSupported; } + + static const int *getUpdateIntervals(); + static const char *updateIntervalToString(int interval); }; } // End of namespace Common #endif -#endif // BACKENDS_UPDATES_ABSTRACT_H +#endif // COMMON_UPDATES_H |