23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#import "XMPPConnection.h"
@interface XMPPStreamManagement: OFObject
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
<XMPPConnectionDelegate>
#endif
{
/// \cond internal
XMPPConnection *_connection;
uint32_t receivedCount;
/// \endcond
}
- initWithConnection: (XMPPConnection*)connection;
@end
|
<
<
|
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#import "XMPPConnection.h"
@interface XMPPStreamManagement: OFObject
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
<XMPPConnectionDelegate>
#endif
{
XMPPConnection *_connection;
uint32_t receivedCount;
}
- initWithConnection: (XMPPConnection*)connection;
@end
|