Big rename part 2: 'config' etc. to 'mapping.
[enjoyable.git] / ConfigsController.h
diff --git a/ConfigsController.h b/ConfigsController.h
deleted file mode 100644 (file)
index 71fce23..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-//  ConfigsController.h
-//  Enjoy
-//
-//  Created by Sam McCall on 4/05/09.
-//  Copyright 2009 University of Otago. All rights reserved.
-//
-
-@class Config;
-@class TargetController;
-
-@interface ConfigsController : NSObject <NSTableViewDataSource, NSTableViewDelegate, NSOpenSavePanelDelegate> {
-    IBOutlet NSButton *removeButton;
-    IBOutlet NSTableView *tableView;
-    IBOutlet TargetController *targetController;
-}
-
-@property (nonatomic, readonly) Config *currentConfig;
-@property (nonatomic, readonly) NSArray *configs;
-
-- (Config *)objectForKeyedSubscript:(NSString *)name;
-
-
-- (IBAction)addPressed:(id)sender;
-- (IBAction)removePressed:(id)sender;
-- (IBAction)importPressed:(id)sender;
-- (IBAction)exportPressed:(id)sender;
-- (void)activateConfig:(Config *)config;
-- (void)activateConfigForProcess:(NSString *)processName;
-
-- (void)save;
-- (void)load;
-
-@end