2007-02-19 22:02:23 -03: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-07 22:49:50 -03:00
|
|
|
#import "GeneralPreferencePane.h"
|
2007-02-19 22:02:23 -03:00
|
|
|
#import "OutputsArrayController.h"
|
|
|
|
|
2009-03-07 22:49:50 -03:00
|
|
|
@interface OutputPane : GeneralPreferencePane {
|
2007-02-19 22:02:23 -03:00
|
|
|
IBOutlet OutputsArrayController *outputDevices;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) takeDeviceID:(id)sender;
|
|
|
|
|
|
|
|
@end
|