/* FILE: AppController.h * * Project TBrowser * Class AppController * 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. * ***************************************************************************/ #ifndef _APPCONTROLLER_H_ #define _APPCONTROLLER_H_ 1 /***************************************************************************/ // // Include // #import #import #import #import #import // // Define // // // Public // // // Referenced Classes // // // Interface // /** * * * AppController class description * *

* *

* *

* *

*
* Description forthcoming */ @interface AppController : NSObject { @private IBOutlet id discoveredServicesList; IBOutlet id browseButton; IBOutlet id window; NSMutableArray *browsers; NSMutableArray *foundServices; BOOL isSearching; } // // Factory Methods // + (id) sharedController; // // Instance Methods // // // Accessor Methods // @end // // Prototypes // /***************************************************************************/ #endif