~oif-packaging/grail/raring

« back to all changes in this revision

Viewing changes to src/recognizer.cpp

  • 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:
26
26
#include <cstdio>
27
27
#include <limits>
28
28
 
29
 
#include <utouch/frame.h>
30
 
#include <utouch/frame_x11.h>
 
29
#include <oif/frame.h>
 
30
#include <oif/frame_x11.h>
31
31
 
32
32
#include "handle.h"
33
33
#include "gesture.h"
34
34
#include "log.h"
35
35
#include "touch.h"
36
36
 
37
 
namespace utouch {
 
37
namespace oif {
38
38
namespace grail {
39
39
 
40
40
const uint64_t Recognizer::COMPOSITION_TIME = 60;
172
172
 
173
173
/**
174
174
 * @internal
175
 
 * Process a uTouch-Frame event for gesture updates
 
175
 * Process a frame event for gesture updates
176
176
 */
177
177
void Recognizer::ProcessEvent(const UFEvent& event) {
178
178
  UFFrame frame;
476
476
}
477
477
 
478
478
} // namespace grail
479
 
} // namespace utouch
 
479
} // namespace oif