/* * file version.h - strings and ints with version info * * $Id: version.h,v 1.5 2004/06/25 11:03:18 iskywalker Exp $ * * Program XBLAST * (C) by Oliver Vogel (e-mail: m.vogel@ndh.net) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2; or (at your option) * any later version * * This program is distributed in the hope that it will be entertaining, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILTY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc. * 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef XBLAST_VERSION_H #define XBLAST_VERSION_H /* * global macros */ #define VERSION_STRING "2.9.22 (Central,epfl,Sky)" #define VERSION_MAJOR 2 #define VERSION_MINOR 9 #define VERSION_PATCH 22 #define COPYRIGHT_YEAR "1993-2004" #endif /* * end of file version.h */