Cog/Preferences/General/PrefPaneController.h

27 lines
570 B
C
Raw Normal View History

2006-09-04 14:06:23 -04:00
//
// PreferencesController.h
// Preferences
//
// Created by Vincent Spader on 9/4/06.
// Copyright 2006 Vincent Spader. All rights reserved.
2006-09-04 14:06:23 -04:00
//
#import <Cocoa/Cocoa.h>
#import "SS_PreferencePaneProtocol.h"
#import "HotKeyPane.h"
#import "FileDrawerPane.h"
#import "RemotePane.h"
2006-09-04 14:06:23 -04:00
@interface PrefPaneController : NSObject <SS_PreferencePaneProtocol> {
IBOutlet HotKeyPane *hotKeyPane;
IBOutlet FileDrawerPane *fileDrawerPane;
IBOutlet RemotePane *remotePane;
2006-09-04 14:06:23 -04:00
}
- (HotKeyPane *)hotKeyPane;
- (FileDrawerPane *)fileDrawerPane;
- (RemotePane *)remotePane;
2006-09-04 14:06:23 -04:00
@end