~azzar1/unity/fix-839717-5.0

« back to all changes in this revision

Viewing changes to tests/test-gesture-engine/GeisAdapterMock.cpp

  • Committer: Tarmac
  • Author(s): Daniel d'Andrada
  • Date: 2012-04-06 02:11:51 UTC
  • mfrom: (2198.1.6 lp940612_v2)
  • Revision ID: tarmac-20120406021151-wpjwi2lgqivdl0p3
Fix the three-finger move for unity.. Fixes: https://bugs.launchpad.net/bugs/940612. Approved by Tim Penhey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2012 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the  Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * version 3 along with this program.  If not, see
 
15
 * <http://www.gnu.org/licenses/>
 
16
 *
 
17
 * Authored by: Daniel d'Andrada <daniel.dandrada@canonical.com>
 
18
 *
 
19
 */
 
20
 
 
21
#include "GeisAdapterMock.h"
 
22
 
 
23
GeisAdapterMock *GeisAdapterMock::_default = 0;
 
24
 
 
25
GeisAdapterMock* GeisAdapterMock::Default() {
 
26
  if (!_default) {
 
27
    _default = new GeisAdapterMock;
 
28
  }
 
29
  return _default;
 
30
}