2009-03-08 01:49:50 +00:00
|
|
|
//
|
|
|
|
// PreferencePluginController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/7/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface PreferencePluginController : NSObject {
|
|
|
|
NSArray *_plugins;
|
2022-02-07 05:49:27 +00:00
|
|
|
|
2009-03-08 01:49:50 +00:00
|
|
|
NSMutableArray *_preferencePanes;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)initWithPlugins:(NSArray *)plugins;
|
|
|
|
|
|
|
|
- (NSArray *)preferencePanes;
|
|
|
|
|
|
|
|
@end
|