/* FILE: main.m * * Project TChat * * Creator Chris B. Vetter * Maintainer Chris B. Vetter * Creation Date Mon Sep 11 15:17:32 CEST 2006 * * Copyright (c) 2006 * * TChat is free software under the terms of a dual BSD/LGPL license. * For a full copyright description, see the COPYRIGHT file. * ***************************************************************************/ // // Include // #include "main.h" #include "AppController.h" #include #include // // Define // // // Typedef // // // Public // // // Private // // // Prototype // /*************************************************************************** ** ** Main ** */ /** * Description forthcoming * * */ int main(int argc, const char **argv) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; { (void) [NSApplication sharedApplication]; [NSApp setDelegate: [AppController sharedController]]; } [pool release]; // // That's it // return NSApplicationMain(argc, argv); } /* ** End of File. ** ****************************************************************************/