2007-02-20 01:02:23 +00:00
|
|
|
//
|
|
|
|
// OutputPane.h
|
|
|
|
// Preferences
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 9/4/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-03-08 01:49:50 +00:00
|
|
|
#import "GeneralPreferencePane.h"
|
2007-02-20 01:02:23 +00:00
|
|
|
#import "OutputsArrayController.h"
|
|
|
|
|
2009-03-08 01:49:50 +00:00
|
|
|
@interface OutputPane : GeneralPreferencePane {
|
2007-02-20 01:02:23 +00:00
|
|
|
IBOutlet OutputsArrayController *outputDevices;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) takeDeviceID:(id)sender;
|
|
|
|
|
|
|
|
@end
|