24
25
26
27
28
29
30
31
32
33
34
35
|
@interface XMPPStreamManagement: OFObject
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
<XMPPConnectionDelegate>
#endif
{
XMPPConnection *_connection;
uint32_t receivedCount;
}
- initWithConnection: (XMPPConnection*)connection;
@end
|
|
|
24
25
26
27
28
29
30
31
32
33
34
35
|
@interface XMPPStreamManagement: OFObject
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
<XMPPConnectionDelegate>
#endif
{
XMPPConnection *_connection;
uint32_t _receivedCount;
}
- initWithConnection: (XMPPConnection*)connection;
@end
|