00001 /* This file is part of Libspectre. 00002 * 00003 * Copyright (C) 2007 Albert Astals Cid <aacid@kde.org> 00004 * Copyright (C) 2007 Carlos Garcia Campos <carlosgc@gnome.org> 00005 * 00006 * Libspectre is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2, or (at your option) 00009 * any later version. 00010 * 00011 * Libspectre is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #ifndef SPECTRE_VERSION_H 00022 #define SPECTRE_VERSION_H 00023 00024 #include <libspectre/spectre-macros.h> 00025 00026 SPECTRE_BEGIN_DECLS 00027 00028 #define SPECTRE_MAJOR_VERSION 0 00029 #define SPECTRE_MINOR_VERSION 2 00030 #define SPECTRE_MICRO_VERSION 0 00031 00032 #define SPECTRE_VERSION_STRING "0.2.0" 00033 00034 #define SPECTRE_VERSION ((0 << 16) | (2 << 8) | (0)) 00035 00036 SPECTRE_END_DECLS 00037 00038 #endif /* SPECTRE_VERSION_H */