Overview
Comment: | Update documentation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bbd249186e0884ea6f0f52d7a27252d0 |
User & Date: | florob@babelmonkeys.de on 2012-12-22 13:55:27 |
Other Links: | manifest | tags |
Context
2012-12-22
| ||
16:41 | Adjust to recent ObjFW changes. check-in: fcef8e0b54 user: js tags: trunk | |
13:55 | Update documentation check-in: bbd249186e user: florob@babelmonkeys.de tags: trunk | |
2012-12-19
| ||
21:36 | Adjust to recent ObjFW changes. check-in: e33c8d554c user: js tags: trunk | |
Changes
Modified src/XMPPConnection.h from [77f95677ee] to [a0ab2db5e3].
︙ | ︙ | |||
313 314 315 316 317 318 319 | * \param element The element to send */ - (void)sendStanza: (OFXMLElement*)element; /** * \brief Sends an XMPPIQ, registering a callback method. * | | | | 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | * \param element The element to send */ - (void)sendStanza: (OFXMLElement*)element; /** * \brief Sends an XMPPIQ, registering a callback method. * * \param target The object that contains the callback method * \param selector The selector of the callback method, * must take exactly one parameter of type XMPPIQ* */ - (void)sendIQ: (XMPPIQ*)iq callbackTarget: (id)target selector: (SEL)selector; #ifdef OF_HAVE_BLOCKS /** * \brief Sends an XMPPIQ, registering a callback block. * * \param block The callback block */ - (void)sendIQ: (XMPPIQ*)iq callbackBlock: (xmpp_callback_block_t)block; #endif /** * \brief Generates a new, unique stanza ID. |
︙ | ︙ |
Modified src/XMPPRoster.h from [dde2cb56af] to [e0bd743e89].
︙ | ︙ | |||
29 30 31 32 33 34 35 | @class XMPPRosterItem; @class XMPPIQ; @class XMPPRoster; @class XMPPMulticastDelegate; /** * \brief A protocol that should be (partially) implemented by delegates | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | @class XMPPRosterItem; @class XMPPIQ; @class XMPPRoster; @class XMPPMulticastDelegate; /** * \brief A protocol that should be (partially) implemented by delegates * of a XMPPRoster */ @protocol XMPPRosterDelegate #ifndef XMPP_ROSTER_M <OFObject> #endif #ifdef OF_HAVE_OPTIONAL_PROTOCOLS @optional |
︙ | ︙ |