Skip to content

Commit 517767c

Browse files
Move files and add Package.swift
1 parent 3f65b2e commit 517767c

29 files changed

+320
-251
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ DerivedData
1616
.idea/
1717
*.hmap
1818
*.xccheckout
19+
.build/

MQTTClient/MQTTClient.xcodeproj/project.pbxproj

Lines changed: 232 additions & 208 deletions
Large diffs are not rendered by default.

MQTTClient/MQTTClient/Minimal/MQTTClient.h

Lines changed: 0 additions & 42 deletions
This file was deleted.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
//
2+
// MQTTClient.h
3+
// MQTTClient
4+
//
5+
// Created by Christoph Krey on 13.01.14.
6+
// Copyright © 2013-2017 Christoph Krey. All rights reserved.
7+
//
8+
9+
/**
10+
Include this file to use MQTTClient classes in your application
11+
12+
@author Christoph Krey [email protected]
13+
@see http://mqtt.org
14+
*/
15+
16+
#import <Foundation/Foundation.h>
17+
18+
#import "MQTTSession.h"
19+
#import "MQTTDecoder.h"
20+
#import "MQTTSessionLegacy.h"
21+
#import "MQTTProperties.h"
22+
#import "MQTTMessage.h"
23+
#import "MQTTTransport.h"
24+
#import "MQTTCFSocketTransport.h"
25+
#import "MQTTCoreDataPersistence.h"
26+
#import "MQTTSSLSecurityPolicyTransport.h"
27+
#import "MQTTLog.h"
28+
29+
#if __has_include("MQTTSessionManager.h")
30+
#import "MQTTSessionManager.h"
31+
#endif
32+
33+
#if __has_include("MQTTWebsocketTransport.h")
34+
#import "MQTTWebsocketTransport.h"
35+
#endif
36+
37+
//! Project version number for MQTTClient.
38+
FOUNDATION_EXPORT double MQTTClientVersionNumber;
39+
40+
//! Project version string for MQTTClient&lt;.
41+
FOUNDATION_EXPORT const unsigned char MQTTClientVersionString[];
42+

0 commit comments

Comments
 (0)