COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coviseCompat.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 // Compatibility header for COVISE modules in YAC
9 #ifndef COVISE_COMPAT_H
10 #define COVISE_COMPAT_H
11 
12 #include <errno.h>
13 
14 #include "byteswap.h"
15 #include "coExport.h"
16 #include "unixcompat.h"
17 #include "common.h"
18 
19 #if !(defined WIN32 || defined WIN64)
20 #include <sys/param.h>
21 #endif
22 #include <cmath>
23 #include <iostream>
24 #include <sstream>
25 
26 #endif