aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2012-03-29 23:55:09 +0000
committerrowanbeentje <rowan@beent.je>2012-03-29 23:55:09 +0000
commit537a96297f236e2c41dd6d18ae317d2211a334a5 (patch)
tree094965db188cfb2ceb15210a864109cc2a750efd /Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h
parente611c3b44b57715a917563f897237fddcaf991c8 (diff)
downloadsequelpro-537a96297f236e2c41dd6d18ae317d2211a334a5.tar.gz
sequelpro-537a96297f236e2c41dd6d18ae317d2211a334a5.tar.bz2
sequelpro-537a96297f236e2c41dd6d18ae317d2211a334a5.zip
- Fix SPMySQL warnings about delegate and proxy methods mixing synthesized getters and manually overridden setters
- Fix autoincrement ID retrieval in SPMySQL, addressing issues previewing rows when the setting for "Reload Table After: Adding a row" is not being used
Diffstat (limited to 'Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h')
-rw-r--r--Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h
index cf132fcf..9fa930c5 100644
--- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h
+++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h
@@ -33,4 +33,12 @@
@interface SPMySQLConnection (Delegate_and_Proxy)
+// Connection delegage
+- (void)setDelegate:(NSObject <SPMySQLConnectionDelegate> *)aDelegate;
+- (NSObject <SPMySQLConnectionDelegate> *)delegate;
+
+// Connection proxy
+- (void)setProxy:(NSObject <SPMySQLConnectionProxy> *)aProxy;
+- (NSObject <SPMySQLConnectionProxy> *)proxy;
+
@end