bes  Updated for version 3.20.6
config_ff.h
1 /*
2  -*- mode: c++; c-basic-offset:4 -*-
3 
4  This file is part of ff_handler a FreeForm API handler for the OPeNDAP
5  DAP2 data server.
6 
7  Copyright (c) 2005 OPeNDAP, Inc.
8  Author: James Gallagher <jgallagher@opendap.org>
9 
10  This is free software; you can redistribute it and/or modify it under the
11  terms of the GNU Lesser General Public License as published by the Free
12  Software Foundation; either version 2.1 of the License, or (at your
13  option) any later version.
14 
15  This software is distributed in the hope that it will be useful, but
16  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18  License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public
21  License along with this library; if not, write to the Free Software
22  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 
24  You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25 */
26 
27 #ifndef config_ff_h_
28 #define config_ff_h_
29 
30 #ifdef HAVE_CONFIG_H
31 #include <config.h>
32 #endif
33 
34 /* GNU gcc/g++ provides a way to mark variables, etc. as unused */
35 
36 #if defined(__GNUG__) || defined(__GNUC__)
37 #define not_used __attribute__ ((unused))
38 #else
39 #define not_used
40 #endif
41 
42 #endif /* config_ff_h_ */