[C++] Split flatbuffers.h into separate files (#6868)
authorDerek Bailey <derekbailey@google.com>
Thu, 11 Nov 2021 06:26:09 +0000 (22:26 -0800)
committerGitHub <noreply@github.com>
Thu, 11 Nov 2021 06:26:09 +0000 (22:26 -0800)
commit6c8c291559053f90a35c138499053449a40e3b9a
tree3f039345a77fa4e6252bd79bef7a5b09aa8b927d
parentfd4ff23da05b282d12a485b203f8176c9f4ffdf0
[C++] Split flatbuffers.h into separate files (#6868)

* split flatbuffers.h into separate files

* wrong variable in cmakelists for android

* readded two accidentally deleted includes

* created buffer.h and moved buffer related things over
21 files changed:
BUILD.bazel
CMakeLists.txt
android/app/src/main/cpp/flatbuffers/CMakeLists.txt
include/flatbuffers/allocator.h [new file with mode: 0644]
include/flatbuffers/array.h [new file with mode: 0644]
include/flatbuffers/base.h
include/flatbuffers/buffer.h [new file with mode: 0644]
include/flatbuffers/buffer_ref.h [new file with mode: 0644]
include/flatbuffers/default_allocator.h [new file with mode: 0644]
include/flatbuffers/detached_buffer.h [new file with mode: 0644]
include/flatbuffers/flatbuffer_builder.h [new file with mode: 0644]
include/flatbuffers/flatbuffers.h
include/flatbuffers/registry.h
include/flatbuffers/string.h [new file with mode: 0644]
include/flatbuffers/struct.h [new file with mode: 0644]
include/flatbuffers/table.h [new file with mode: 0644]
include/flatbuffers/vector.h [new file with mode: 0644]
include/flatbuffers/vector_downward.h [new file with mode: 0644]
include/flatbuffers/verifier.h [new file with mode: 0644]
src/idl_parser.cpp
tests/fuzzer/CMakeLists.txt