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