aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPConnectionControllerDelegateProtocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPConnectionControllerDelegateProtocol.h')
-rw-r--r--Source/SPConnectionControllerDelegateProtocol.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/SPConnectionControllerDelegateProtocol.h b/Source/SPConnectionControllerDelegateProtocol.h
index 74410309..ae049778 100644
--- a/Source/SPConnectionControllerDelegateProtocol.h
+++ b/Source/SPConnectionControllerDelegateProtocol.h
@@ -28,6 +28,8 @@
//
// More info at <https://github.com/sequelpro/sequelpro>
+@class SPConnectionController;
+
/**
* @protocol SPConnectionControllerDelegateProtocol SPConnectionControllerDelegateProtocol.h
*
@@ -42,13 +44,13 @@
*
* @param controller The calling connection controller.
*/
-- (void)connectionControllerInitiatingConnection:(id)controller;
+- (void)connectionControllerInitiatingConnection:(SPConnectionController *)controller;
/**
* Called when the connection controller's connection attempt failed.
*
* @param controller The calling connection controller.
*/
-- (void)connectionControllerConnectAttemptFailed:(id)controller;
+- (void)connectionControllerConnectAttemptFailed:(SPConnectionController *)controller;
@end