Adding a new proxy object for the networking. It's broken right now, but
[MenuTunes.git] / NetworkObject.h
diff --git a/NetworkObject.h b/NetworkObject.h
new file mode 100755 (executable)
index 0000000..f211d19
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ *  MenuTunes
+ *  NetworkObject
+ *    Remote network object that is vended
+ *
+ *  Original Author : Kent Sutherland <ksutherland@ithinksw.com>
+ *   Responsibility : Kent Sutherland <ksutherland@ithinksw.com>
+ *
+ *  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 <Foundation/Foundation.h>
+
+@class ITMTRemote;
+
+@interface NetworkObject : NSObject
+{
+
+}
+- (ITMTRemote *)remote;
+- (NSString *)serverName;
+@end