00001 /* 00002 * Copyright Staffan Gimåker 2009. 00003 * 00004 * --- 00005 * 00006 * Distributed under the Boost Software License, Version 1.0. 00007 * (See accompanying file LICENSE_1_0.txt or copy at 00008 * http://www.boost.org/LICENSE_1_0.txt) 00009 */ 00010 00011 #ifndef PEEKABOT_DEPRECATED_HH_INCLUDED 00012 #define PEEKABOT_DEPRECATED_HH_INCLUDED 00013 00014 00015 #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) 00016 # define PEEKABOT_DEPRECATED __attribute__((deprecated)) 00017 #else 00018 # define PEEKABOT_DEPRECATED 00019 #endif 00020 00021 00022 #endif // PEEKABOT_DEPRECATED_HH_INCLUDED
1.7.1