MLECO-1920: RunInference method made virtual to be overriden by some use-cases.

Change-Id: I431205c66170e81137419719af60bd7d87a3ef5b
Signed-off-by: alexander <alexander.efremov@arm.com>
diff --git a/source/application/tensorflow-lite-micro/include/Model.hpp b/source/application/tensorflow-lite-micro/include/Model.hpp
index 7a0493c..70e17ad 100644
--- a/source/application/tensorflow-lite-micro/include/Model.hpp
+++ b/source/application/tensorflow-lite-micro/include/Model.hpp
@@ -84,8 +84,8 @@
         /** @brief  Checks if the model uses signed data. */
         bool IsDataSigned() const;
 
-        /** @brief  Runs the inference (invokes the interpreter). */
-        bool RunInference();
+         /** @brief  Runs the inference (invokes the interpreter). */
+         virtual bool RunInference();
 
         /** @brief   Model information handler common to all models.
          *  @return  true or false based on execution success.