andrewfromcali / mcinsight

gui version of memcached for development

This URL has Read+Write access

Gerard Gualberto (author)
Thu Jul 23 16:55:31 -0700 2009
andrewfromcali (committer)
Thu Jul 23 17:45:04 -0700 2009
mcinsight / main.m
100644 20 lines (16 sloc) 0.461 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// main.m
// mcinsight
//
// Created by aa on 7/9/08.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import "Runner.h"
 
 
int main(int argc, char *argv[])
{
  NSAutoreleasePool *autoreleasepool = [[NSAutoreleasePool alloc] init];
  [NSThread detachNewThreadSelector:@selector(run) toTarget:[Runner alloc] withObject:nil];
  [autoreleasepool release];
  return NSApplicationMain(argc, (const char **) argv);
}