~oif-team/grail/trunk

« back to all changes in this revision

Viewing changes to test/integration/device.cpp

  • Committer: Chase Douglas
  • Date: 2012-07-25 23:09:08 UTC
  • mfrom: (229.2.4 grail)
  • Revision ID: chase.douglas@canonical.com-20120725230908-1l25qh2ex2ueanqj
Merge in project rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include <gtest/gtest.h>
29
29
 
30
 
utouch::evemu::Device::Device(const char* path) {
 
30
oif::evemu::Device::Device(const char* path) {
31
31
  static const char UINPUT_NODE[] = "/dev/uinput";
32
32
 
33
33
  device_ = evemu_new(NULL);
58
58
  }
59
59
}
60
60
 
61
 
utouch::evemu::Device::~Device() {
 
61
oif::evemu::Device::~Device() {
62
62
  close(fd_);
63
63
  evemu_delete(device_);
64
64
}