Release 18.08
diff --git a/ArmnnDevice.hpp b/ArmnnDevice.hpp
new file mode 100644
index 0000000..83414d5
--- /dev/null
+++ b/ArmnnDevice.hpp
@@ -0,0 +1,27 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+
+#pragma once
+
+#include "DriverOptions.hpp"
+
+#include <armnn/ArmNN.hpp>
+
+namespace armnn_driver
+{
+
+class ArmnnDevice
+{
+protected:
+    ArmnnDevice(DriverOptions options);
+    virtual ~ArmnnDevice() {}
+
+protected:
+    armnn::IRuntimePtr m_Runtime;
+    armnn::IGpuAccTunedParametersPtr m_ClTunedParameters;
+    DriverOptions m_Options;
+};
+
+} // namespace armnn_driver