1 /* 2 * Copyright 2017 Google Inc. All rights reserved. 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 FLATBUFFERS_FLATC_PCH_H_ 18 #define FLATBUFFERS_FLATC_PCH_H_ 19 20 // stl 21 #include <cmath> 22 #include <sstream> 23 #include <cassert> 24 #include <unordered_set> 25 #include <unordered_map> 26 #include <iostream> 27 #include <functional> 28 #include <set> 29 #include <iterator> 30 #include <tuple> 31 32 // flatbuffers 33 #include "flatbuffers/pch/pch.h" 34 #include "flatbuffers/code_generators.h" 35 #include "flatbuffers/flatbuffers.h" 36 #include "flatbuffers/flexbuffers.h" 37 #include "flatbuffers/idl.h" 38 39 #endif // FLATBUFFERS_FLATC_PCH_H_ 40