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_FLATC_PCH_H_
0018 #define FLATBUFFERS_FLATC_PCH_H_
0019 
0020 // stl
0021 #include <cmath>
0022 #include <sstream>
0023 #include <cassert>
0024 #include <unordered_set>
0025 #include <unordered_map>
0026 #include <iostream>
0027 #include <functional>
0028 #include <set>
0029 #include <iterator>
0030 #include <tuple>
0031 
0032 // flatbuffers
0033 #include "flatbuffers/pch/pch.h"
0034 #include "flatbuffers/code_generators.h"
0035 #include "flatbuffers/flatbuffers.h"
0036 #include "flatbuffers/flexbuffers.h"
0037 #include "flatbuffers/idl.h"
0038 
0039 #endif // FLATBUFFERS_FLATC_PCH_H_