1 /*
2  * Copyright 2020, The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ANDROID_HARDWARE_IDENTITY_LIBEIC_H
18 #define ANDROID_HARDWARE_IDENTITY_LIBEIC_H
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 /* The EIC_INSIDE_LIBEIC_H preprocessor symbol is used to enforce
25  * library users to include only this file. All public interfaces, and
26  * only public interfaces, must be included here.
27  */
28 #define EIC_INSIDE_LIBEIC_H
29 #include "EicCbor.h"
30 #include "EicCommon.h"
31 #include "EicOps.h"
32 #include "EicPresentation.h"
33 #include "EicProvisioning.h"
34 #include "EicSession.h"
35 #undef EIC_INSIDE_LIBEIC_H
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif  // ANDROID_HARDWARE_IDENTITY_LIBEIC_H
42