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