00001 /*************************************************************************** 00002 version.h - description 00003 ------------------- 00004 begin : Sun Dec 4 2005 00005 copyright : (C) 2005-2006 by Ben Swerts 00006 email : bswerts@users.sourceforge.net 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00020 00021 #ifndef VERSION_H 00022 #define VERSION_H 00023 00025 00026 // Qt header files 00027 #include <qstring.h> 00028 00030 class Version 00031 { 00032 public: 00034 static const QString appName; //< The name of the application 00035 static const QString appCompany; //< The company 00036 static const QString appVersion; //< The version of the application 00037 static const QString appBuild; //< The build number of the application 00038 00039 private: 00040 Version(); // constructor 00041 }; 00042 00043 #endif 00044