From: Pawel Wasowski Date: Tue, 22 Dec 2020 11:04:09 +0000 (+0100) Subject: [ML][pipeline] Add files structure X-Git-Tag: submit/tizen/20210128.113801~33^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e72289616ed9222bcda408701a576d3a8ad7fc79;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git [ML][pipeline] Add files structure ACR: TWDAPI-274 Change-Id: I1941dba3cc1cfab2e0be514608e7b936da12b20e Signed-off-by: Pawel Wasowski --- diff --git a/src/ml/ml.gyp b/src/ml/ml.gyp index b21279a..65a987d 100644 --- a/src/ml/ml.gyp +++ b/src/ml/ml.gyp @@ -15,6 +15,10 @@ '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 index 0000000..f931b81 --- /dev/null +++ b/src/ml/ml_pipeline.cc @@ -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 index 0000000..e277044 --- /dev/null +++ b/src/ml/ml_pipeline.h @@ -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 index 0000000..dcba44c --- /dev/null +++ b/src/ml/ml_pipeline_manager.cc @@ -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 index 0000000..c068daf --- /dev/null +++ b/src/ml/ml_pipeline_manager.h @@ -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