view TestQuasimodalEventTap.m @ 19:8053681846ad

Refactored event tap C code into an Objective-C class.
author Atul Varma <avarma@mozilla.com>
date Sun, 11 Apr 2010 23:53:49 -0700
parents
children 58522f82a39e
line wrap: on
line source

#import <Foundation/NSAutoreleasePool.h>

#import "QuasimodalEventTap.h"

int main(int argc, const char *argv[] )
{
  NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

  QuasimodalEventTap *eventTap = [[QuasimodalEventTap alloc] init];

  CFRunLoopRun();

  [pool release];

  return 0;
}