version.h
author insilmaril
Tue, 03 Jun 2008 08:33:34 +0000
changeset 709 25eec6d77740
parent 708 02f683ded030
child 712 9b1806ab9199
permissions -rw-r--r--
Workaround for unreadable file with Qt 4.4
     1 #ifndef VERSION_H 
     2 #define VERSION_H
     3 
     4 #include <QString>
     5 
     6 #define __VYM_NAME "VYM"
     7 #define __VYM_VERSION "1.12.0"
     8 #define __VYM_CODENAME "Codename: RC-3"
     9 //#define __VYM_CODENAME "Codename: development version"
    10 #define __VYM_BUILD_DATE "2008-06-02"
    11 
    12 
    13 bool checkVersion(const QString &);
    14 bool checkVersion(const QString &, const QString &);
    15 
    16 #endif