#import #import "Communicator.h" int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Communicator *c = [[Communicator alloc] init]; c->host = @"http://127.0.0.1"; c->port = 6789; [c setup]; [c open]; [pool drain]; return 0; }