Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-08-28 08:53:39

0001 /*
0002  * Copyright 2017 Google Inc. All rights reserved.
0003  *
0004  * Licensed under the Apache License, Version 2.0 (the "License");
0005  * you may not use this file except in compliance with the License.
0006  * You may obtain a copy of the License at
0007  *
0008  *     http://www.apache.org/licenses/LICENSE-2.0
0009  *
0010  * Unless required by applicable law or agreed to in writing, software
0011  * distributed under the License is distributed on an "AS IS" BASIS,
0012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0013  * See the License for the specific language governing permissions and
0014  * limitations under the License.
0015  */
0016 
0017 #ifndef FLATBUFFERS_PCH_H_
0018 #define FLATBUFFERS_PCH_H_
0019 
0020 // stl
0021 #include <cstdint>
0022 #include <cstring>
0023 #include <algorithm>
0024 #include <list>
0025 #include <string>
0026 #include <utility>
0027 #include <iomanip>
0028 #include <map>
0029 #include <memory>
0030 #include <limits>
0031 #include <stack>
0032 #include <vector>
0033 #include <type_traits>
0034 
0035 // flatbuffers
0036 #include "flatbuffers/util.h"
0037 
0038 #endif // FLATBUFFERS_PCH_H_