No single line enumerations, please, and check headerdocs when adding them.
authorMatthew Judy <mjudy@ithinksw.com>
Tue, 4 Mar 2003 09:25:59 +0000 (09:25 +0000)
committerMatthew Judy <mjudy@ithinksw.com>
Tue, 4 Mar 2003 09:25:59 +0000 (09:25 +0000)
ITMTRemote.h

index 1d76786..c757cdd 100755 (executable)
 
 #import <Cocoa/Cocoa.h>
 
-typedef enum {stopped = -1, paused, playing, rewinding, forwarding} PlayerState;
+typedef enum {
+    stopped = -1,
+    paused,
+    playing,
+    rewinding,
+    forwarding
+} PlayerState;
 
 /*! @protocol ITMTRemote
  *  @abstract Declares what a MenuTunes Remote must be able to do.
@@ -50,7 +56,7 @@ typedef enum {stopped = -1, paused, playing, rewinding, forwarding} PlayerState;
 + (id)remote;
 
 /*! @method title:
- *  @abstract Returns an autoreleased instance of the remote.
+ *  @abstract Returns the title of the plugin, which should be player name.
  *  @result An NSString containing the title.
  */
 - (NSString *)title;