~oif-packaging/grail/raring

« back to all changes in this revision

Viewing changes to src/gesture.h

  • Committer: Chase Douglas
  • Date: 2012-06-21 20:30:14 UTC
  • mto: This revision was merged to the branch mainline in revision 234.
  • Revision ID: chase.douglas@ubuntu.com-20120621203014-g2uhy6mg779aufop
Rename utouch-grail to grail

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 *
3
 
 * utouch-grail - Multitouch Gesture Recognition Library
 
3
 * grail - Multitouch Gesture Recognition Library
4
4
 *
5
5
 * Copyright (C) 2011-2012 Canonical Ltd.
6
6
 *
18
18
 *
19
19
 ****************************************************************************/
20
20
 
21
 
#ifndef UTOUCH_GRAIL_GESTURE_H_
22
 
#define UTOUCH_GRAIL_GESTURE_H_
 
21
#ifndef GRAIL_GESTURE_H_
 
22
#define GRAIL_GESTURE_H_
23
23
 
24
24
#include <map>
25
25
#include <memory>
26
26
#include <queue>
27
27
#include <set>
28
28
 
29
 
#include <utouch/frame.h>
 
29
#include <oif/frame.h>
30
30
 
31
 
#include "utouch/grail.h"
 
31
#include "oif/grail.h"
32
32
#include "forward.h"
33
33
 
34
 
namespace utouch {
 
34
namespace oif {
35
35
namespace grail {
36
36
 
37
37
class Gesture : public std::enable_shared_from_this<Gesture> {
91
91
};
92
92
 
93
93
} // namespace grail
94
 
} // namespace utouch
95
 
#endif // UTOUCH_GRAIL_GESTURE_H_
 
94
} // namespace oif
 
95
#endif // GRAIL_GESTURE_H_