summaryrefslogtreecommitdiffstats
path: root/src/public/RBADllExport.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/public/RBADllExport.hpp')
-rw-r--r--src/public/RBADllExport.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/public/RBADllExport.hpp b/src/public/RBADllExport.hpp
new file mode 100644
index 0000000..b5a950d
--- /dev/null
+++ b/src/public/RBADllExport.hpp
@@ -0,0 +1,35 @@
+/**
+ * Copyright (c) 2019 DENSO CORPORATION.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/// @file RBADllExport.hpp
+/// @brief DLL_EXPORT definition file
+
+#ifndef RBADLLEXPORT_HPP
+#define RBADLLEXPORT_HPP
+
+#ifdef _MSC_VER
+ #ifndef DLL_EXPORT
+ #ifdef _WINDLL
+ #define DLL_EXPORT __declspec(dllexport)
+ #else
+ #define DLL_EXPORT __declspec(dllimport)
+ #endif
+ #endif
+#else
+ #define DLL_EXPORT
+#endif
+
+#endif