[go: up one dir, main page]

Menu

[r997]: / libmona / mona.hh  Maximize  Restore  History

Download this file

101 lines (81 with data), 2.8 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
/* -*- 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