Fixed the state for the playlists menu item to show the currently playing playlist.
[MenuTunes.git] / NetworkObject.h
index f211d19..5a3781b 100755 (executable)
 
 @interface NetworkObject : NSObject
 {
-
+    BOOL _authenticated, _valid;
 }
 - (ITMTRemote *)remote;
 - (NSString *)serverName;
+
+- (BOOL)requiresPassword;
+- (BOOL)sendPassword:(NSData *)password;
+
+- (void)invalidate;
+- (void)makeValid;
+- (BOOL)isValid;
 @end