2016-11-17 15:50:23 +01:00
|
|
|
/*
|
|
|
|
Copyright 2016 Chris Ballinger
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
Copyright 2016 Vector Creations Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2016-04-09 02:24:41 +02:00
|
|
|
|
2017-01-15 03:13:16 +01:00
|
|
|
#import <Foundation/Foundation.h>
|
2017-01-14 21:57:46 +01:00
|
|
|
|
2016-04-09 02:24:41 +02:00
|
|
|
// In this header, you should import all the public headers of your framework using statements like #import <OLMKit/PublicHeader.h>
|
|
|
|
|
2016-09-27 11:57:29 +02:00
|
|
|
#import <OLMKit/OLMAccount.h>
|
|
|
|
#import <OLMKit/OLMSession.h>
|
|
|
|
#import <OLMKit/OLMMessage.h>
|
|
|
|
#import <OLMKit/OLMUtility.h>
|
2016-10-10 17:10:51 +02:00
|
|
|
#import <OLMKit/OLMInboundGroupSession.h>
|
|
|
|
#import <OLMKit/OLMOutboundGroupSession.h>
|
2018-10-16 15:51:31 +02:00
|
|
|
#import <OLMKit/OLMPkEncryption.h>
|
|
|
|
#import <OLMKit/OLMPkDecryption.h>
|
2019-03-13 14:54:04 +01:00
|
|
|
#import <OLMKit/OLMSAS.h>
|
2017-01-18 03:36:01 +01:00
|
|
|
|
|
|
|
@interface OLMKit : NSObject
|
|
|
|
|
|
|
|
//! Project version string for OLMKit, the same as libolm.
|
|
|
|
+ (NSString*)versionString;
|
|
|
|
|
|
|
|
@end
|