From 1e863b1b31571657055a97a75740d2864a81bc9f Mon Sep 17 00:00:00 2001 From: Georgiy Frolov Date: Fri, 4 Sep 2015 14:00:21 -0400 Subject: [PATCH] add gesture remote factory to remote handler --- src/osvr/Client/RemoteHandlerFactory.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osvr/Client/RemoteHandlerFactory.cpp b/src/osvr/Client/RemoteHandlerFactory.cpp index 02da6243c..6371f8365 100644 --- a/src/osvr/Client/RemoteHandlerFactory.cpp +++ b/src/osvr/Client/RemoteHandlerFactory.cpp @@ -28,6 +28,7 @@ #include "ButtonRemoteFactory.h" #include "DirectionRemoteFactory.h" #include "EyeTrackerRemoteFactory.h" +#include "GestureRemoteFactory.h" #include "ImagingRemoteFactory.h" #include "Location2DRemoteFactory.h" #include "TrackerRemoteFactory.h" @@ -48,6 +49,7 @@ namespace client { ButtonRemoteFactory(conns).registerWith(factory); ImagingRemoteFactory(conns).registerWith(factory); EyeTrackerRemoteFactory(conns).registerWith(factory); + GestureRemoteFactory(conns).registerWith(factory); Location2DRemoteFactory(conns).registerWith(factory); DirectionRemoteFactory(conns).registerWith(factory); }