43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
-
-
+
+
|
* @brief Initializes an already allocated XMPPIQ with the specified type and
* ID.
*
* @param type The value for the stanza's type attribute
* @param ID The value for the stanza's id attribute
* @return An initialized XMPPIQ
*/
- initWithType: (OFString *)type
ID: (OFString *)ID;
- (instancetype)initWithType: (OFString *)type
ID: (OFString *)ID;
/*!
* @brief Generates a result IQ for the receiving object.
*
* @return A new autoreleased XMPPIQ
*/
- (XMPPIQ *)resultIQ;
|