/* -*- mona-c++ -*- * Copyright (c) 2004 * Max-Planck-Institute for Human Cognitive and Brain Science * * 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 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ // $Id: mona.hh 907 2006-06-19 11:01:52Z write1 $ /*! \brief Main header file for MONA includes all libmona headers \file mona.hh \author M. Tittgemeyer, tittge@cbs.mpg.de */ #ifndef __MONA_HH #define __MONA_HH 1 #ifdef HAVE_CONFIG_H #include #endif #ifdef __cplusplus extern "C++" { #endif /* __cplusplus */ extern const volatile unsigned int libmona_major_version; extern const volatile unsigned int libmona_minor_version; extern const volatile unsigned int libmona_micro_version; #define LIBMONA_CHECK_VERSION(major,minor,micro) \ (libmona_major_version > (major) || \ (libmona_major_version == (major) && libmona_minor_version > (minor)) || \ (libmona_major_version == (major) && libmona_minor_version == (minor) && \ libmona_micro_version >= (micro))) #ifdef __cplusplus } #endif /* __cplusplus */ /// Data types #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /// Function types #include #include /// General handlers //#include #include #include /// Specialisation #include #include #include #include #include #include #include #include #include /// Algorithms #include #include #endif