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