aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/gfsmConfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfsm/gfsm/src/libgfsm/gfsmConfig.h')
-rw-r--r--gfsm/gfsm/src/libgfsm/gfsmConfig.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/gfsm/gfsm/src/libgfsm/gfsmConfig.h b/gfsm/gfsm/src/libgfsm/gfsmConfig.h
new file mode 100644
index 0000000..ccb9cb4
--- /dev/null
+++ b/gfsm/gfsm/src/libgfsm/gfsmConfig.h
@@ -0,0 +1,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 */