~ubuntu-branches/ubuntu/trusty/geis/trusty

« back to all changes in this revision

Viewing changes to libgeis/geis_gesture_flick.h

  • Committer: Package Import Robot
  • Author(s): Chase Douglas
  • Date: 2012-07-30 08:51:42 UTC
  • Revision ID: package-import@ubuntu.com-20120730085142-jrc33ygjvt0ob1wl
Tags: upstream-2.2.11
ImportĀ upstreamĀ versionĀ 2.2.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * @file geis_gesture_flick.h
 
3
 * @brief higher-level "flick" gesture recognizer
 
4
 *
 
5
 * Copyright 2011 Canonical Ltd.
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or modify it under
 
8
 * the terms of the GNU Lesser General Public License as published by the Free
 
9
 * Software Foundation; either version 3 of the License, or (at your option) any
 
10
 * later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful, but WITHOUT
 
13
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
14
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 
15
 * details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
#ifndef GEIS_GESTURE_FLICK_H_
 
21
#define GEIS_GESTURE_FLICK_H_
 
22
 
 
23
#include "geis/geis.h"
 
24
 
 
25
typedef struct GeisGestureFlick *GeisGestureFlick;
 
26
 
 
27
 
 
28
GeisGestureFlick geis_gesture_flick_new(Geis geis);
 
29
 
 
30
void geis_gesture_flick_delete(GeisGestureFlick flick);
 
31
 
 
32
#endif /* GEIS_GESTURE_FLICK_H_ */