/* All Rights reserved */ #ifndef __AUDIOCD_H_INCLUDED #define __AUDIOCD_H_INCLUDED #include #include @interface AudioCD : NSObject { IBOutlet NSTableView *driveList; IBOutlet NSTextField *driveInput; IBOutlet NSButton *addButton; IBOutlet NSButton *removeButton; IBOutlet id view; IBOutlet NSWindow *window; } - (IBAction) addButtonClicked: (id)sender; - (IBAction) removeButtonClicked: (id)sender; @end #endif