84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
-
+
-
+
+
|
/*!
* @brief The list of contacts as an OFDictionary with the bare JID as a string
* as key.
*/
@property (readonly, nonatomic)
OFDictionary OF_GENERIC(OFString *, XMPPRosterItem *) *rosterItems;
- init OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;
/*!
* @brief Initializes an already allocated XMPPRoster.
*
* @param connection The connection roster related stanzas are send and
* received over
* @return An initialized XMPPRoster
*/
- initWithConnection: (XMPPConnection *)connection OF_DESIGNATED_INITIALIZER;
- (instancetype)initWithConnection: (XMPPConnection *)connection
OF_DESIGNATED_INITIALIZER;
/*!
* @brief Requests the roster from the server.
*/
- (void)requestRoster;
/*!
|