aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/gfsmConfig.h
blob: ccb9cb457b8a47e4faf14695c3374d827dbfae5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*=============================================================================*\
 * File: gfsmConfig.h
 * Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
 * Description: finite state machine library: autoconf configuration hack
 *
 * Copyright (c) 2004-2007 Bryan Jurish.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *=============================================================================*/

/**
 * \file gfsmConfig.h
 * \brief safely include autoheader preprocessor defines
 *
 * \file gfsmConfigNoAuto.h
 * \brief Undefine any autoheader preprocessor defines
 *
 * \file gfsmConfigAuto.h
 * \brief autoheader-generated preprocessor defines
 */

/* 
 * Putting autoheader files within the #ifndef/#endif idiom (below)
 * is potentially a BAD IDEA, since we might need to (re-)define
 * the autoheader-generated preprocessor symbols (e.g. after
 * (#include)ing in some config.h from another autoheader package
 */
#include <gfsmConfigNoAuto.h>
#include <gfsmConfigAuto.h>

/* 
 * Define a sentinel preprocessor symbol _GFSM_CONFIG_H, just
 * in case someone wants to check whether we've already
 * (#include)d this file ....
 */
#ifndef _GFSM_CONFIG_H
#define _GFSM_CONFIG_H

#ifdef GFSM_INLINE_ENABLED
# ifdef __cplusplus
/** Macro for declaring small functions inline (inlining enabled, C++-style) */
#  define GFSM_INLINE inline
# else
/** Macro for declaring small functions inline (inlining enabled, C98-style) */
#  define GFSM_INLINE static inline
# endif /* __cplusplus */
#else
/** Macro for declaring small functions inline (inlining disabled) */
# define GFSM_INLINE
#endif /* GFSM_INLINE_ENABLED */

#endif /* _GFSM_CONFIG_H */