Added CommonAPI.h for general usage in user code.
authorPhilip Rauwolf <rauwolf@itestra.de>
Thu, 6 Jun 2013 11:16:16 +0000 (13:16 +0200)
committerPhilip Rauwolf <rauwolf@itestra.de>
Thu, 6 Jun 2013 11:16:16 +0000 (13:16 +0200)
Makefile.am
src/CommonAPI/CommonAPI.h [new file with mode: 0644]

index f2937bb..aa85c06 100644 (file)
@@ -38,6 +38,7 @@ CommonAPI_include_HEADERS = \
         src/CommonAPI/Attribute.h \
         src/CommonAPI/AttributeExtension.h \
         src/CommonAPI/ByteBuffer.h \
+        src/CommonAPI/CommonAPI.h \
         src/CommonAPI/Event.h \
         src/CommonAPI/Factory.h \
         src/CommonAPI/Factory.hpp \
diff --git a/src/CommonAPI/CommonAPI.h b/src/CommonAPI/CommonAPI.h
new file mode 100644 (file)
index 0000000..332c5d8
--- /dev/null
@@ -0,0 +1,22 @@
+/* Copyright (C) 2013 BMW Group
+ * Author: Manfred Bathelt (manfred.bathelt@bmw.de)
+ * Author: Juergen Gehring (juergen.gehring@bmw.de)
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef COMMONAPI_H_
+#define COMMONAPI_H_
+
+
+#define COMMONAPI_COMPILATION
+
+#include "Runtime.h"
+#include "Factory.h"
+#include "AttributeExtension.h"
+#include "types.h"
+
+#undef COMMONAPI_COMPILATION
+
+
+#endif /* COMMONAPI_H_ */