version.h
author insilmaril
Wed, 20 May 2009 15:40:14 +0000
changeset 772 e3f722759c7e
parent 770 57ce1ba6d1cb
child 773 340bc29da9a0
permissions -rw-r--r--
Fixed segfault when closing a map
     1 #ifndef VERSION_H 
     2 #define VERSION_H
     3 
     4 #include <QString>
     5 
     6 #define __VYM_NAME "VYM"
     7 #define __VYM_VERSION "1.13.0"
     8 //#define __VYM_CODENAME "Codename: RC-1"
     9 #define __VYM_CODENAME "Codename: development version, not for production!"
    10 #define __VYM_BUILD_DATE "2009-05-18"
    11 
    12 
    13 bool checkVersion(const QString &);
    14 bool checkVersion(const QString &, const QString &);
    15 
    16 #endif