summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ADBC/ChangeLog8
-rw-r--r--ADBC/adbc/config.h24
2 files changed, 31 insertions, 1 deletions
diff --git a/ADBC/ChangeLog b/ADBC/ChangeLog
index dfdf828d66d..a70829f0e29 100644
--- a/ADBC/ChangeLog
+++ b/ADBC/ChangeLog
@@ -1,8 +1,14 @@
+Mon Jan 4 16:46:22 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
+
+ * adbc/config.h:
+
+ Missing file.
+
Mon Jan 4 16:44:26 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
* default.features.tmpl:
- Fixed errors in the template file.
+ Fixed errors in the template file.
Mon Jan 4 06:02:42 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
diff --git a/ADBC/adbc/config.h b/ADBC/adbc/config.h
new file mode 100644
index 00000000000..e1a0dbb62b8
--- /dev/null
+++ b/ADBC/adbc/config.h
@@ -0,0 +1,24 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file config.h
+ *
+ * $Id$
+ *
+ * @author James H. Hill
+ */
+//=============================================================================
+
+#ifndef _ADBC_CONFIG_H_
+#define _ADBC_CONFIG_H_
+
+#include "ace/config.h"
+
+#if defined (__ADBC_INLINE__)
+#define ADBC_INLINE inline
+#else
+#define ADBC_INLINE
+#endif
+
+#endif // !defined _ADBC_CONFIG_H_