‪JMSDK iOS  ‪v2.8.0
‪API文档
JMSDK.h
浏览该文件的文档.
1 //
2 // JMSDK.h
3 // JMSDK
4 //
5 // Created by maikireton on 2017/8/11.
6 // Copyright © 2017年 juphoon. All rights reserved.
7 //
8 
9 #if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
10 #import <UIKit/UIKit.h>
11 #elif TARGET_OS_MAC
12 #import <Cocoa/Cocoa.h>
13 #endif
14 
15 #ifndef ZPLATFORM
16 #define ZPLATFORM ((TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR) ? ZPLATFORM_IOS : ZPLATFORM_OSX)
17 #endif
18 
19 
20 #import <JMSDK/JCClient.h>
21 #import <JMSDK/JCMediaDevice.h>
22 #import <JMSDK/JCDoodle.h>
23 #import <JMSDK/JCLog.h>
24 #import <JMSDK/JCNet.h>
25 #import <JMSDK/JCConference.h>
26 #import <JMSDK/JCJson.h>
27 #import <JMSDK/JCUtils.h>
28 #import <JMSDK/JCVersion.h>
29 
30 #if __has_include(<JMSDK/JCMessageChannel.h>)
31 #import <JMSDK/JCAccount.h>
32 #import <JMSDK/JCCall.h>
33 #import <JMSDK/JCConfig.h>
34 #import <JMSDK/JCMessageChannel.h>
35 #import <JMSDK/JCMessageChannelItem.h>
36 #import <JMSDK/JCMessageChannelCallback.h>
37 #import <JMSDK/JCMessageChannelConstants.h>
38 #import <JMSDK/JCGroup.h>
39 #import <JMSDK/JCGroupCallback.h>
40 #import <JMSDK/JCGroupConstants.h>
41 #import <JMSDK/JCGroupItem.h>
42 #import <JMSDK/JCGroupMember.h>
43 #import <JMSDK/JCStorage.h>
44 #import <JMSDK/JCStorageCallback.h>
45 #import <JMSDK/JCStorageConstants.h>
46 #import <JMSDK/JCStorageItem.h>
47 #endif
48 
49 #if __has_include(<JMSDK/JCBroadcastSampleHandler.h>) && (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
50 #import <JMSDK/JCBroadcastSampleHandler.h>
51 #endif
52 
54 FOUNDATION_EXPORT double JMSDKVersionNumber;
55 
57 FOUNDATION_EXPORT const unsigned char JMSDKVersionString[];
58 
FOUNDATION_EXPORT const unsigned char JMSDKVersionString[]
Project version string for JMSDK.
Definition: JMSDK.h:57
FOUNDATION_EXPORT double JMSDKVersionNumber
Project version number for JMSDK.
Definition: JMSDK.h:54