X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/d11efc8d287ca1643e9ac6a7b561cad7cd659bda..107e67ed9e5791f210cfaf2185e75ea5b5e84792:/NetworkObject.h diff --git a/NetworkObject.h b/NetworkObject.h new file mode 100755 index 0000000..f211d19 --- /dev/null +++ b/NetworkObject.h @@ -0,0 +1,28 @@ +/* + * MenuTunes + * NetworkObject + * Remote network object that is vended + * + * Original Author : Kent Sutherland + * Responsibility : Kent Sutherland + * + * Copyright (c) 2002 - 2003 iThink Software. + * All Rights Reserved + * + * This header defines the Objective-C protocol which all MenuTunes Remote + * plugins must implement. To build a remote, create a subclass of this + * object, and implement each method in the @protocol below. + * + */ + +#import + +@class ITMTRemote; + +@interface NetworkObject : NSObject +{ + +} +- (ITMTRemote *)remote; +- (NSString *)serverName; +@end