]> git.saurik.com Git - apple/security.git/blob - KeychainCircle/generated_source/KCInitialMessageData.h
Security-59754.80.3.tar.gz
[apple/security.git] / KeychainCircle / generated_source / KCInitialMessageData.h
1 // This file was automatically generated by protocompiler
2 // DO NOT EDIT!
3 // Compiled from KCInitialMessageData.proto
4
5 #import <Foundation/Foundation.h>
6 #import <ProtocolBuffer/PBCodable.h>
7
8 #ifdef __cplusplus
9 #define KCINITIALMESSAGEDATA_FUNCTION extern "C"
10 #else
11 #define KCINITIALMESSAGEDATA_FUNCTION extern
12 #endif
13
14 @interface KCInitialMessageData : PBCodable <NSCopying>
15 {
16 NSData *_prepareMessage;
17 }
18
19
20 @property (nonatomic, readonly) BOOL hasPrepareMessage;
21 @property (nonatomic, retain) NSData *prepareMessage;
22
23 // Performs a shallow copy into other
24 - (void)copyTo:(KCInitialMessageData *)other;
25
26 // Performs a deep merge from other into self
27 // If set in other, singular values in self are replaced in self
28 // Singular composite values are recursively merged
29 // Repeated values from other are appended to repeated values in self
30 - (void)mergeFrom:(KCInitialMessageData *)other;
31
32 KCINITIALMESSAGEDATA_FUNCTION BOOL KCInitialMessageDataReadFrom(__unsafe_unretained KCInitialMessageData *self, __unsafe_unretained PBDataReader *reader);
33
34 @end
35