Show
Ignore:
Timestamp:
02/20/08 16:53:20 (4 years ago)
Author:
gbooker
Message:

Start of Take 2 update; thanks Stephan
Refs #126

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/SapphireFrappliance/SapphireAppliance.h

    r461 r494  
    2020 
    2121/*! 
     22 * @brief The ATV 2 protocol 
     23 * 
     24 * This protocol defines the new methods in ATV 2. 
     25 */ 
     26@protocol BRAppliance <NSObject> 
     27- (id)applianceInfo; 
     28- (id)applianceCategories; 
     29- (id)identifierForContentAlias:(id)fp8; 
     30- (id)controllerForIdentifier:(id)fp8; 
     31@end 
     32 
     33/*! 
    2234 * @brief The Main class 
    2335 * 
    2436 * This class bypasses the whitelist check and sets up backrow to load and use the main controller. 
    2537 */ 
    26 @interface SapphireAppliance : BRAppliance  
    27 { 
     38@interface SapphireAppliance : NSObject <BRAppliance, BRApplianceProtocol> { 
    2839} 
    2940@end 
     41