You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
453 B
Objective-C
25 lines
453 B
Objective-C
//
|
|
// PEPSession.h
|
|
// PEPObjCAdapterFramework
|
|
//
|
|
// Created by Dirk Zimmermann on 17.07.20.
|
|
// Copyright © 2020 p≡p. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <PEPObjCAdapterFramework/PEPTypes.h>
|
|
#import <PEPObjCAdapterFramework/PEPSessionProtocol.h>
|
|
|
|
@class PEPMessage;
|
|
@class PEPIdentity;
|
|
@class PEPLanguage;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PEPSession : NSObject <PEPSessionProtocol>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|