-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMPPFramework.h
executable file
·46 lines (35 loc) · 1.42 KB
/
XMPPFramework.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// This file is designed to be customized by YOU.
//
// As you pick and choose which parts of the framework you need for your application, add them to this header file.
//
// Various modules available within the framework optionally interact with each other.
// E.g. The XMPPPing module will utilize the XMPPCapabilities module (if available) to advertise support XEP-0199.
//
// However, the modules can only interact if they're both added to your xcode project.
// E.g. If XMPPCapabilities isn't a part of your xcode project, then XMPPPing shouldn't attempt to reference it.
//
// So how do the individual modules know if other modules are available?
// Via this header file.
//
// If you #import "XMPPCapabilities.h" in this file, then _XMPP_CAPABILITIES_H will be defined for other modules.
// And they can automatically take advantage of it.
//
// CUSTOMIZE ME !
//
// THIS HEADER FILE SHOULD BE TAILORED TO MATCH YOUR APPLICATION.
#import "XMPP.h"
// List the modules you're using here.
#import "XMPPConfig.h"
#import "XMPPReconnect.h"
#import "XMPPRoster.h"
#import "XMPPRosterCoreDataStorage.h"
#import "XMPPvCardTempModule.h"
#import "XMPPvCardAvatarModule.h"
#import "XMPPvCardCoreDataStorage.h"
#import "XMPPCapabilities.h"
#import "XMPPCapabilitiesCoreDataStorage.h"
#import "XMPPMUC.h"
#import "XMPPRoomCoreDataStorage.h"
#import "XMPPMessageArchiving.h"
#import "XMPPMessageArchivingCoreDataStorage.h"