Deletion of related methods as inherited class changing. 33/212533/3 submit/tizen/20190905.022044
authorHyunsoo Park <hance.park@samsung.com>
Thu, 22 Aug 2019 11:33:07 +0000 (20:33 +0900)
committerHyunsoo Park <hance.park@samsung.com>
Tue, 3 Sep 2019 08:04:15 +0000 (17:04 +0900)
It is inherited by IInferenceEngineVision and IInferenceEngineCommon both.
But relationship of them is changed as inheritant. So i remove unneccessary methods.

Change-Id: I0821a4d3d7b0640cabdeadbef180fc6fd097f90d
Signed-off-by: Hyunsoo Park <hance.park@samsung.com>
packaging/inference-engine-opencv.spec
src/inference_engine_opencv_private.h

index a60e0c9..736ac86 100644 (file)
@@ -1,7 +1,7 @@
 Name:       inference-engine-opencv
 Summary:    OpenCV based implementation of inference-engine-interface
 Version:    0.0.1
-Release:    2
+Release:    3
 Group:      Multimedia/Libraries
 License:    Apache-2.0
 Source0:    %{name}-%{version}.tar.gz
index f824dd6..109742b 100644 (file)
@@ -17,7 +17,6 @@
 #ifndef __INFERENCE_ENGINE_IMPL_OPENCV_H__
 #define __INFERENCE_ENGINE_IMPL_OPENCV_H__
 
-#include <inference_engine_common.h>
 #include <inference_engine_vision.h>
 
 #include <opencv2/dnn.hpp>
@@ -42,7 +41,7 @@ using namespace InferenceEngineInterface::Common;
 namespace InferenceEngineImpl {
 namespace OpenCVImpl {
 
-class InferenceOpenCV : public IInferenceEngineVision, public IInferenceEngineCommon {
+class InferenceOpenCV : public IInferenceEngineVision {
 public:
     InferenceOpenCV(std::string protoFile,
                     std::string weightFile,