From fbe969cd8d5797c03318e9e3a0b1de98c9f95e67 Mon Sep 17 00:00:00 2001 From: Matthew Judy Date: Tue, 4 Mar 2003 09:25:59 +0000 Subject: [PATCH] No single line enumerations, please, and check headerdocs when adding them. --- ITMTRemote.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ITMTRemote.h b/ITMTRemote.h index 1d76786..c757cdd 100755 --- a/ITMTRemote.h +++ b/ITMTRemote.h @@ -28,7 +28,13 @@ #import -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; -- 2.20.1