MI - Fimex
deprecated.h
Go to the documentation of this file.
1 /*
2  * Fimex, deprecated.h
3  *
4  * (C) Copyright 2010, met.no
5  *
6  * Project Info: https://wiki.met.no/fimex/start
7  *
8  * This library is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  * License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21  * USA.
22  *
23  * Created on: Apr 28, 2010
24  * Author: Heiko Klein
25  */
26 
27 #ifndef MIFI_DEPRECATED_H_
28 #define MIFI_DEPRECATED_H_
29 
30 #ifdef __GNUC__
31 #define MIFI_DEPRECATED(func) func __attribute__ ((deprecated))
32 #elif defined(_MSC_VER)
33 #define MIFI_DEPRECATED(func) __declspec(deprecated) func
34 #elif defined(__IBMC__) || defined(__IBMCPP__)
35 /* "DEPRECATED not implemented for IBM compilers" */
36 #define MIFI_DEPRECATED(func) func
37 #else
38 #pragma message("WARNING: You need to implement DEPRECATED for this compiler")
39 #define MIFI_DEPRECATED(func) func
40 #endif
41 
42 #endif /* MIFI_DEPRECATED_H_ */