mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-08 09:12:14 +08:00
* add unit tests for support struct as key * make changes to parser and add helper function to generate comparator for struct * implement * add more unit tests * format * just a test * test done * rerun generator * restore build file * address comment * format * rebase * rebase * add more unit tests * rerun generator * address some comments * address comment * update * format * address comment Co-authored-by: Wen Sun <sunwen@google.com> Co-authored-by: Derek Bailey <derekbailey@google.com>
17 lines
317 B
C++
17 lines
317 B
C++
#ifndef TESTS_KEY_FIELD_TEST_H
|
|
#define TESTS_KEY_FIELD_TEST_H
|
|
|
|
namespace flatbuffers {
|
|
namespace tests {
|
|
|
|
void FixedSizedScalarKeyInStructTest();
|
|
void StructKeyInStructTest();
|
|
void NestedStructKeyInStructTest();
|
|
void FixedSizedStructArrayKeyInStructTest();
|
|
|
|
|
|
} // namespace tests
|
|
} // namespace flatbuffers
|
|
|
|
#endif
|