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 || {}));