aboutsummaryrefslogtreecommitdiffstats
path: root/support/hololens/ServoApp/Content/SpatialInputHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/hololens/ServoApp/Content/SpatialInputHandler.h')
-rw-r--r--support/hololens/ServoApp/Content/SpatialInputHandler.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/support/hololens/ServoApp/Content/SpatialInputHandler.h b/support/hololens/ServoApp/Content/SpatialInputHandler.h
deleted file mode 100644
index 5212cf108ab..00000000000
--- a/support/hololens/ServoApp/Content/SpatialInputHandler.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#pragma once
-
-namespace Immersive {
-// Sample gesture handler.
-// Hooks up events to recognize a tap gesture, and keeps track of input using a
-// boolean value.
-class SpatialInputHandler {
-public:
- SpatialInputHandler();
- ~SpatialInputHandler();
-
- winrt::Windows::UI::Input::Spatial::SpatialInteractionSourceState
- CheckForInput();
-
-private:
- // Interaction event handler.
- void OnSourcePressed(
- winrt::Windows::UI::Input::Spatial::SpatialInteractionManager const
- &sender,
- winrt::Windows::UI::Input::Spatial::
- SpatialInteractionSourceEventArgs const &args);
-
- // API objects used to process gesture input, and generate gesture events.
- winrt::Windows::UI::Input::Spatial::SpatialInteractionManager
- m_interactionManager = nullptr;
-
- // Event registration token.
- winrt::event_token m_sourcePressedEventToken;
-
- // Used to indicate that a Pressed input event was received this frame.
- winrt::Windows::UI::Input::Spatial::SpatialInteractionSourceState
- m_sourceState = nullptr;
-};
-} // namespace Immersive