--- a/src/misc.h Sun Aug 11 16:08:13 2013 +0300 +++ b/src/misc.h Sun Sep 08 16:14:58 2013 +0300 @@ -16,18 +16,18 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef MISC_H -#define MISC_H +#ifndef ZANDEMO_MISC_H +#define ZANDEMO_MISC_H #include "types.h" uint32 makeByteID (uint8 a, uint8 b, uint8 c, uint8 d); str binaryConfigName (str ver); str basename (str path); -list<var> getVersionsList(); -list<var> getReleasesList(); void addVersion (str name, bool isRelease, str binaryPath); +QList<QVariant> getVersions(); + // ----------------------------------------------------------------------------- // Templated clamp template<class T> static inline T clamp (T a, T min, T max) { @@ -49,4 +49,4 @@ return (a >= 0) ? a : -a; } -#endif // MISC_H \ No newline at end of file +#endif // ZANDEMO_MISC_H \ No newline at end of file