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.
23 lines
435 B
Objective-C
23 lines
435 B
Objective-C
//
|
|
// NSMutableDictionary+PEP.h
|
|
// pEpObjCAdapter
|
|
//
|
|
// Created by Dirk Zimmermann on 24.04.18.
|
|
// Copyright © 2018 p≡p. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "message.h"
|
|
|
|
void replaceDictionaryContentsWithMessage(NSMutableDictionary *dict, message *message);
|
|
|
|
@interface NSMutableDictionary (PEP)
|
|
|
|
/**
|
|
Replaces all content with `message`.
|
|
*/
|
|
- (void)replaceWithMessage:(message *)message;
|
|
|
|
@end
|