1 #ifndef __MANIFEST_YOKE__
2 #define __MANIFEST_YOKE__
5 #include <security_utilities/security_utilities.h>
6 #include <security_utilities/cfclass.h>
7 #include "SecManifest.h"
8 #include "ManifestInternal.h"
9 #include "ManifestSigner.h"
10 #include "AppleManifest.h"
15 * Copyright (c) 2004,2011,2014 Apple Inc. All Rights Reserved.
17 * @APPLE_LICENSE_HEADER_START@
19 * This file contains Original Code and/or Modifications of Original Code
20 * as defined in and that are subject to the Apple Public Source License
21 * Version 2.0 (the 'License'). You may not use this file except in
22 * compliance with the License. Please obtain a copy of the License at
23 * http://www.opensource.apple.com/apsl/ and read it before using this
26 * The Original Code and all software distributed under the License are
27 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
28 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
29 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
31 * Please see the License for the specific language governing rights and
32 * limitations under the License.
34 * @APPLE_LICENSE_HEADER_END@
39 enum ManifestSignerType
{kAppleSigner
};
45 ManifestInternal mManifestInternal
;
46 ManifestSigner
*mManifestSigner
;
52 virtual ~Manifest () _NOEXCEPT
;
54 ManifestInternal
& GetManifestInternal () {return mManifestInternal
;}
55 ManifestSigner
* GetSigner () {return mManifestSigner
;}
57 void MakeSigner (ManifestSignerType whichSigner
);