summaryrefslogtreecommitdiffstats
path: root/tests/auto/input
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-08-25 11:17:38 +0200
committerPaul Lemire <paul.lemire@kdab.com>2016-11-18 22:41:03 +0000
commit75436ef8ec402ade4507d0c6f8291bcc53cbe021 (patch)
treeccc6ddab7fd4d89d182ec37f99366fc3e77c0710 /tests/auto/input
parentbc53baa9e1e77eb942979d5da1c4658f4645699e (diff)
Input testdevice: add missing include guards
Change-Id: Ib52d0656f1d9f813bfac1914229eb133b1aafdc2 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests/auto/input')
-rw-r--r--tests/auto/input/commons/testdevice.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/input/commons/testdevice.h b/tests/auto/input/commons/testdevice.h
index c6fc4995b..52750029e 100644
--- a/tests/auto/input/commons/testdevice.h
+++ b/tests/auto/input/commons/testdevice.h
@@ -26,6 +26,9 @@
**
****************************************************************************/
+#ifndef TESTDEVICE_H
+#define TESTDEVICE_H
+
#include <Qt3DCore/private/qnode_p.h>
#include <Qt3DInput/QAbstractPhysicalDevice>
#include <Qt3DInput/private/qabstractphysicaldevicebackendnode_p.h>
@@ -151,3 +154,5 @@ private:
QVector<TestDevice*> m_devices;
QVector<TestDeviceBackendNode*> m_deviceBackendNodes;
};
+
+#endif // TESTDEVICE_H