|
@@ -25,7 +25,7 @@
|
25
|
25
|
* The {@code data} dictionary contains an "error" key describing the error and
|
26
|
26
|
* a {@code url} key with the conference URL.
|
27
|
27
|
*/
|
28
|
|
-- (void) conferenceFailed:(NSDictionary *)data;
|
|
28
|
+- (void)conferenceFailed:(NSDictionary *)data;
|
29
|
29
|
|
30
|
30
|
/**
|
31
|
31
|
* Called when a conference was joined.
|
|
@@ -33,7 +33,7 @@
|
33
|
33
|
* The {@code data} dictionary contains a {@code url} key with the conference
|
34
|
34
|
* URL.
|
35
|
35
|
*/
|
36
|
|
-- (void) conferenceJoined:(NSDictionary *)data;
|
|
36
|
+- (void)conferenceJoined:(NSDictionary *)data;
|
37
|
37
|
|
38
|
38
|
/**
|
39
|
39
|
* Called when a conference was left.
|
|
@@ -41,7 +41,7 @@
|
41
|
41
|
* The {@code data} dictionary contains a {@code url} key with the conference
|
42
|
42
|
* URL.
|
43
|
43
|
*/
|
44
|
|
-- (void) conferenceLeft:(NSDictionary *)data;
|
|
44
|
+- (void)conferenceLeft:(NSDictionary *)data;
|
45
|
45
|
|
46
|
46
|
/**
|
47
|
47
|
* Called before a conference is joined.
|
|
@@ -49,7 +49,7 @@
|
49
|
49
|
* The {@code data} dictionary contains a {@code url} key with the conference
|
50
|
50
|
* URL.
|
51
|
51
|
*/
|
52
|
|
-- (void) conferenceWillJoin:(NSDictionary *)data;
|
|
52
|
+- (void)conferenceWillJoin:(NSDictionary *)data;
|
53
|
53
|
|
54
|
54
|
/**
|
55
|
55
|
* Called before a conference is left.
|
|
@@ -57,13 +57,13 @@
|
57
|
57
|
* The {@code data} dictionary contains a {@code url} key with the conference
|
58
|
58
|
* URL.
|
59
|
59
|
*/
|
60
|
|
-- (void) conferenceWillLeave:(NSDictionary *)data;
|
|
60
|
+- (void)conferenceWillLeave:(NSDictionary *)data;
|
61
|
61
|
|
62
|
62
|
/**
|
63
|
63
|
* Called when loading the main configuration file fails.
|
64
|
64
|
*
|
65
|
65
|
* The {@code data} dictionary contains an {@code error} key with the error.
|
66
|
66
|
*/
|
67
|
|
-- (void) loadConfigError:(NSDictionary *)data;
|
|
67
|
+- (void)loadConfigError:(NSDictionary *)data;
|
68
|
68
|
|
69
|
69
|
@end
|