[ML][pipeline] Add files structure 24/250424/4
authorPawel Wasowski <p.wasowski2@samsung.com>
Tue, 22 Dec 2020 11:04:09 +0000 (12:04 +0100)
committerPawel Wasowski <p.wasowski2@samsung.com>
Mon, 4 Jan 2021 11:46:04 +0000 (12:46 +0100)
ACR: TWDAPI-274

Change-Id: I1941dba3cc1cfab2e0be514608e7b936da12b20e
Signed-off-by: Pawel Wasowski <p.wasowski2@samsung.com>
src/ml/ml.gyp
src/ml/ml_pipeline.cc [new file with mode: 0644]
src/ml/ml_pipeline.h [new file with mode: 0644]
src/ml/ml_pipeline_manager.cc [new file with mode: 0644]
src/ml/ml_pipeline_manager.h [new file with mode: 0644]

index b21279a..65a987d 100644 (file)
         'ml_extension.h',
         'ml_instance.cc',
         'ml_instance.h',
+        'ml_pipeline.cc',
+        'ml_pipeline.h',
+        'ml_pipeline_manager.cc',
+        'ml_pipeline_manager.h',
         'ml_utils.cc',
         'ml_utils.h',
       ],
diff --git a/src/ml/ml_pipeline.cc b/src/ml/ml_pipeline.cc
new file mode 100644 (file)
index 0000000..f931b81
--- /dev/null
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    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.
+ */
+
+#include "ml_pipeline.h"
\ No newline at end of file
diff --git a/src/ml/ml_pipeline.h b/src/ml/ml_pipeline.h
new file mode 100644 (file)
index 0000000..e277044
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    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.
+ */
+
+#ifndef ML_ML_PIPELINE_H_
+#define ML_ML_PIPELINE_H_
+
+#include "common/picojson.h"
+#include "common/platform_result.h"
+
+namespace extension {
+namespace ml {
+
+} // namespace ml
+} // namespace extension
+
+#endif // ML_ML_PIPELINE_H_
\ No newline at end of file
diff --git a/src/ml/ml_pipeline_manager.cc b/src/ml/ml_pipeline_manager.cc
new file mode 100644 (file)
index 0000000..dcba44c
--- /dev/null
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    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.
+ */
+
+#include "ml_pipeline_manager.h"
\ No newline at end of file
diff --git a/src/ml/ml_pipeline_manager.h b/src/ml/ml_pipeline_manager.h
new file mode 100644 (file)
index 0000000..c068daf
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    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.
+ */
+
+#ifndef ML_ML_PIPELINE_MANAGER_H_
+#define ML_ML_PIPELINE_MANAGER_H_
+
+#include "common/picojson.h"
+#include "common/platform_result.h"
+
+namespace extension {
+namespace ml {
+
+} // namespace ml
+} // namespace extension
+
+#endif // ML_ML_PIPELINE_MANAGER_H_
\ No newline at end of file