From 71cbbeed173a9b94b4e573d17f5265aa8a072ed0 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 9 May 2016 14:04:13 +0200 Subject: [PATCH] Create SwipeManager --- UI/Input/Touch/SwipeManager | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 UI/Input/Touch/SwipeManager diff --git a/UI/Input/Touch/SwipeManager b/UI/Input/Touch/SwipeManager new file mode 100644 index 0000000..b6c4c9c --- /dev/null +++ b/UI/Input/Touch/SwipeManager @@ -0,0 +1,30 @@ + +/** + * Swipe manager class. + * + * @author OMS Development Team + * @author Dennis Eichhorn + * @copyright 2013 Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 * @since 1.0.0 + */ +(function (jsOMS, undefined) +{ + jsOMS.Autoloader.defineNamespace('jsOMS.UI.Input.Touch'); + + /** + * @constructor + * + * @since 1.0.0 + * @author Dennis Eichhorn + */ + jsOMS.UI.Input.Touch.SwipeManager = function (app) + { + this.app = app; + this.surface = {}; + }; + + jsOMS.UI.Input.Touch.SwipeManager.prototype.add = function (surface, id, gesture, callback) + { + }; +}(window.jsOMS = window.jsOMS || {}));