// // PreferencePanePlugin.h // Cog // // Created by Vincent Spader on 3/7/09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import @protocol PreferencePanePlugin @required // An array of PrefPaneController instances that the plugin has available + (NSArray *)preferencePanes; @end @protocol PreferencePane @required - (NSView *)view; - (NSString *)title; - (NSImage *)icon; @end