/* 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 <AppKit/NSNibDeclarations.h>
#import <AppKit/NSNibLoading.h>
#import <Foundation/NSFileHandle.h>
#import <Foundation/NSNotification.h>
#import <Tryst/NSNetServices.h>
//
// Define
//
//
// Public
//
//
// Referenced Classes
//
//
// Interface
//
/**
* <unit>
* <heading>
* AppController class description
* </heading>
* <p>
* <!-- Foreword -->
* </p>
* <unit />
* <p>
* <!-- Afterword -->
* </p>
* </unit>
* <em>Description forthcoming</em>
*/
@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
syntax highlighted by Code2HTML, v. 0.9.1