/* -*- 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 <config.h>
#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 <libmona/2DDatafield.hh>
#include <libmona/2DVector.hh>
#include <libmona/3DAlgorithm.hh>
#include <libmona/3DDatafield.hh>
#include <libmona/3DImage.hh>
#include <libmona/3DImagePtr.hh>
#include <libmona/3DVector.hh>
#include <libmona/3DVectorfield.hh>
#include <libmona/3DMatrix.hh>
#include <libmona/4DVector.hh>
#include <libmona/RefBase.hh>
#include <libmona/RefData.hh>
#include <libmona/Vector.hh>
#include <libmona/triangularMesh.hh>
#include <libmona/criticalPoint.hh>
/// Function types
#include <libmona/filter.hh>
#include <libmona/histogram.hh>
/// General handlers
//#include <libmona/parallel.hh>
#include <libmona/typetraits.hh>
#include <libmona/plugin_handler.hh>
/// Specialisation
#include <libmona/monaAttr.hh>
#include <libmona/monaAlgorithms.hh>
#include <libmona/monaException.hh>
#include <libmona/monaIOStream.hh>
#include <libmona/monaHelprs.hh>
#include <libmona/monaPopt.hh>
#include <libmona/monaTypes.hh>
#include <libmona/monaUtils.hh>
#include <libmona/monaHistory.hh>
/// Algorithms
#include <libmona/matrix-luDecomp.hh>
#include <libmona/voxelMover.hh>
#endif