diff options
author | sqlprodev <sqlprodev@northofthree.com> | 2011-04-11 20:29:49 +0000 |
---|---|---|
committer | sqlprodev <sqlprodev@northofthree.com> | 2011-04-11 20:29:49 +0000 |
commit | 0ce916eb0583ec6b062786f91bee0133906671ce (patch) | |
tree | 68a5767ded966f4eadf53ba9ce85bcaf6d31b951 /Source/SPDatabaseViewController.h | |
parent | 2621e79c75a0119a54c669b263caa82183bd19c8 (diff) | |
download | sequelpro-0ce916eb0583ec6b062786f91bee0133906671ce.tar.gz sequelpro-0ce916eb0583ec6b062786f91bee0133906671ce.tar.bz2 sequelpro-0ce916eb0583ec6b062786f91bee0133906671ce.zip |
initial commit of SP_REFACTOR ifdefs, the start of a long quest to separate UI code from functional code
Diffstat (limited to 'Source/SPDatabaseViewController.h')
-rw-r--r-- | Source/SPDatabaseViewController.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPDatabaseViewController.h b/Source/SPDatabaseViewController.h index 682d6f74..f84d81cd 100644 --- a/Source/SPDatabaseViewController.h +++ b/Source/SPDatabaseViewController.h @@ -35,6 +35,7 @@ - (BOOL)contentLoaded; - (BOOL)statusLoaded; +#ifndef SP_REFACTOR /* method decls */ // Tab view control - (IBAction)viewStructure:(id)sender; - (IBAction)viewContent:(id)sender; @@ -42,6 +43,7 @@ - (IBAction)viewStatus:(id)sender; - (IBAction)viewRelations:(id)sender; - (IBAction)viewTriggers:(id)sender; +#endif - (void)setStructureRequiresReload:(BOOL)reload; - (void)setContentRequiresReload:(BOOL)reload; - (void)setStatusRequiresReload:(BOOL)reload; @@ -49,6 +51,8 @@ // Table control - (void)loadTable:(NSString *)aTable ofType:(NSInteger)aTableType; +#ifndef SP_REFACTOR /* method decls */ - (NSView *)databaseView; +#endif @end |