summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames H. Hill <hilljh82@gmail.com>2010-01-04 16:46:46 +0000
committerJames H. Hill <hilljh82@gmail.com>2010-01-04 16:46:46 +0000
commit92f001df733888ec086917804bdf00e81c9ffda4 (patch)
tree5a07a9af56af11b447b224a09309321c0a68ca74
parent89f7cdfa311b9de6e4dc9f9b068e5cad01a7c16f (diff)
downloadATCD-92f001df733888ec086917804bdf00e81c9ffda4.tar.gz
Mon Jan 4 16:46:22 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
-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_