COVISE Core
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 "common.h"
17
18#if !(defined WIN32 || defined WIN64)
19#include <sys/param.h>
20# ifdef HZ
21# undef HZ
22# endif
23#endif
24#include <cmath>
25#include <iostream>
26#include <sstream>
27
28#endif