summaryrefslogtreecommitdiffstats
path: root/src/public
diff options
context:
space:
mode:
Diffstat (limited to 'src/public')
-rw-r--r--src/public/RBAArea.cpp26
-rw-r--r--src/public/RBADisplay.cpp26
-rw-r--r--src/public/RBADllExport.hpp35
-rw-r--r--src/public/RBAModel.cpp26
-rw-r--r--src/public/RBAPositionContainer.cpp26
-rw-r--r--src/public/RBAResult.cpp25
-rw-r--r--src/public/RBAScene.cpp26
-rw-r--r--src/public/RBASize.cpp26
-rw-r--r--src/public/RBAZone.cpp26
9 files changed, 242 insertions, 0 deletions
diff --git a/src/public/RBAArea.cpp b/src/public/RBAArea.cpp
new file mode 100644
index 0000000..55aaea2
--- /dev/null
+++ b/src/public/RBAArea.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * Area class definition
+ */
+
+#include "RBAArea.hpp"
+
+namespace rba
+{
+
+}
diff --git a/src/public/RBADisplay.cpp b/src/public/RBADisplay.cpp
new file mode 100644
index 0000000..90cf60b
--- /dev/null
+++ b/src/public/RBADisplay.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * Display class definition
+ */
+
+#include "RBADisplay.hpp"
+
+namespace rba
+{
+
+}
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
diff --git a/src/public/RBAModel.cpp b/src/public/RBAModel.cpp
new file mode 100644
index 0000000..71fadde
--- /dev/null
+++ b/src/public/RBAModel.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * Mode class definition
+ */
+
+#include "RBAModel.hpp"
+
+namespace rba
+{
+
+}
diff --git a/src/public/RBAPositionContainer.cpp b/src/public/RBAPositionContainer.cpp
new file mode 100644
index 0000000..ed2f3f9
--- /dev/null
+++ b/src/public/RBAPositionContainer.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * PositionContainer class definition
+ */
+
+#include "RBAPositionContainer.hpp"
+
+namespace rba
+{
+
+}
diff --git a/src/public/RBAResult.cpp b/src/public/RBAResult.cpp
new file mode 100644
index 0000000..fabdc25
--- /dev/null
+++ b/src/public/RBAResult.cpp
@@ -0,0 +1,25 @@
+/**
+ * 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.
+ */
+
+/**
+ * Arbitration result class definition
+ */
+
+#include "RBAResult.hpp"
+
+namespace rba {
+
+}
diff --git a/src/public/RBAScene.cpp b/src/public/RBAScene.cpp
new file mode 100644
index 0000000..a46453b
--- /dev/null
+++ b/src/public/RBAScene.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * Scene class definition
+ */
+
+#include "RBAScene.hpp"
+
+namespace rba
+{
+
+}
diff --git a/src/public/RBASize.cpp b/src/public/RBASize.cpp
new file mode 100644
index 0000000..34fa800
--- /dev/null
+++ b/src/public/RBASize.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * Size information class definition
+ */
+
+#include "RBASize.hpp"
+
+namespace rba
+{
+
+}
diff --git a/src/public/RBAZone.cpp b/src/public/RBAZone.cpp
new file mode 100644
index 0000000..268765b
--- /dev/null
+++ b/src/public/RBAZone.cpp
@@ -0,0 +1,26 @@
+/**
+ * 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.
+ */
+
+/**
+ * Zone class definition
+ */
+
+#include "RBAZone.hpp"
+
+namespace rba
+{
+
+}