Last change
on this file since 1707 was
1707,
checked in by Peter, 12 years ago
|
let user define YAT_DEPRECATE
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.2 KB
|
Rev | Line | |
---|
[1501] | 1 | #ifndef _theplu_yat_utility_deprecate_ |
---|
| 2 | #define _theplu_yat_utility_deprecate_ |
---|
[1500] | 3 | |
---|
| 4 | // $Id: deprecate.h 1707 2009-01-12 22:51:35Z peter $ |
---|
| 5 | |
---|
| 6 | /* |
---|
[1707] | 7 | Copyright (C) 2008, 2009 Peter Johansson |
---|
[1500] | 8 | |
---|
| 9 | This file is part of the yat library, http://trac.thep.lu.se/yat |
---|
| 10 | |
---|
| 11 | The yat library is free software; you can redistribute it and/or |
---|
| 12 | modify it under the terms of the GNU General Public License as |
---|
| 13 | published by the Free Software Foundation; either version 3 of the |
---|
| 14 | License, or (at your option) any later version. |
---|
| 15 | |
---|
| 16 | The yat library is distributed in the hope that it will be useful, |
---|
| 17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 19 | General Public License for more details. |
---|
| 20 | |
---|
| 21 | You should have received a copy of the GNU General Public License |
---|
| 22 | along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
| 23 | */ |
---|
| 24 | |
---|
| 25 | /// |
---|
| 26 | /// \file utility/deprecate.h |
---|
| 27 | /// |
---|
| 28 | |
---|
| 29 | #include "config_public.h" |
---|
| 30 | |
---|
[1707] | 31 | // allow user to define YAT_DEPRECATE and thereby turn off warning |
---|
| 32 | // about deprecation |
---|
| 33 | #ifndef YAT_DEPRECATE |
---|
[1500] | 34 | #ifdef YAT_HAVE_GCC_DEPRECATED |
---|
| 35 | /// if supported by compiler define attribute deprecated |
---|
| 36 | #define YAT_DEPRECATE __attribute__((deprecated)) |
---|
| 37 | #else |
---|
| 38 | /// otherwise define it as empty |
---|
| 39 | #define YAT_DEPRECATE |
---|
| 40 | #endif |
---|
[1707] | 41 | #endif |
---|
[1500] | 42 | |
---|
| 43 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.