https://github.com/ma-tech/Woolz
Raw File
Tip revision: a669baf40caca7cbe295d355c367023360fbea5e authored by Bill Hill on 02 February 2016, 10:40:55 UTC
Now version 1.6.8.
Tip revision: a669baf
Wlz.h
#ifndef WLZ_H
#define WLZ_H
#if defined(__GNUC__)
#ident "University of Edinburgh $Id$"
#else
static char _Wlz_h[] = "University of Edinburgh $Id$";
#endif
/*!
* \file         libWlz/Wlz.h
* \author       Bill Hill
* \date         March 1999
* \version      $Id$
* \par
* Address:
*               MRC Human Genetics Unit,
*               MRC Institute of Genetics and Molecular Medicine,
*               University of Edinburgh,
*               Western General Hospital,
*               Edinburgh, EH4 2XU, UK.
* \par
* Copyright (C), [2012],
* The University Court of the University of Edinburgh,
* Old College, Edinburgh, UK.
* 
* 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., 51 Franklin Street, Fifth Floor,
* Boston, MA  02110-1301, USA.
* \brief	Main (top-level) Woolz header file which includes all
* 		other header files required by Woolz.
* \ingroup	Wlz
*/

#ifndef WLZ_EXT_BIND
#ifdef __cplusplus
extern "C"
{
#endif
#endif /* WLZ_EXT_BIND */

#include <stdio.h>
#include <math.h>

#include <Alc.h>

#include <Alg.h>

#include <WlzError.h>
#include <WlzType.h>
#include <WlzDebug.h>
#include <WlzProto.h>
#include <WlzMacro.h>

#ifndef WLZ_EXT_BIND
#ifdef __cplusplus
}
#endif
#endif /* WLZ_EXT_BIND */

#endif	/* !WLZ_H Don't put anything after this line */
back to top