aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Types.hpp
diff options
context:
space:
mode:
authorDavid Beck <david.beck@arm.com>2018-10-03 13:09:28 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-10 16:16:58 +0100
commite97c6e0b88fd0a17991c1be5fc66e466e29e5b8d (patch)
tree6d694c581ee9145c6a777459345cf4c65b8377b3 /include/armnn/Types.hpp
parent539b44dbd620c9f793f84933c1bcc51ce3ff085e (diff)
downloadarmnn-e97c6e0b88fd0a17991c1be5fc66e466e29e5b8d.tar.gz
IVGCVSW-1642 : adding IBackendInternal interface
Change-Id: Icd55fed8381af319f11b4cd977cf03103cdf1bd9
Diffstat (limited to 'include/armnn/Types.hpp')
-rw-r--r--include/armnn/Types.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index d0a0174ecd..12ecda0c39 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -6,6 +6,7 @@
#include <array>
#include <memory>
+#include "ILayerSupport.hpp"
namespace armnn
{
@@ -113,6 +114,7 @@ protected:
public:
virtual const std::string& GetId() const = 0;
+ virtual const ILayerSupport& GetLayerSupport() const = 0;
};
using IBackendPtr = std::shared_ptr<IBackend>;