Hugin trunk 0.1
Loading...
Searching...
No Matches
GaborGlobal.h
Go to the documentation of this file.
1/* Import from Gabor API
2
3Copyright (c) 2002-3 Adriaan Tijsseling
4
5
6 All Rights Reserved
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#ifndef __GABORGLOBAL__
23#define __GABORGLOBAL__
24
25#include <iostream>
26#include <fstream>
27#include <string>
28#include <cstring>
29#include <math.h>
30#include <stdio.h>
31
32// Quick access to maximum and minimum values
33#define Max(a,b) (a>b?a:b)
34#define Min(a,b) (a<b?a:b)
35
36#endif
37