00001 /*************************************************************************** 00002 version.cpp - 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 00019 00024 00025 00026 00028 00029 // Xbrabo header files 00030 #include "version.h" 00031 00035 00037 Version::Version() 00039 { 00040 } 00041 00045 const QString Version::appName = "Brabosphere"; // The name of the application 00046 const QString Version::appCompany = "University of Antwerp"; // The company 00047 const QString Version::appVersion = "1.0.0"; // The version of the application 00048 const QString Version::appBuild = QString::number( // The build number of the application read from an automatically 00049 #include "buildnumber.h" // updated file. The value depends on whether Brabosphere or 00050 ); // CrdView is being built as it is pulled from the local include dir. 00051