diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2023-05-11 18:26:06 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2023-05-11 18:26:06 -0700 |
commit | 426f3b8bf2ee9c0bdfd48cd1d3a0145d969d5714 (patch) | |
tree | 5f6b5e0a25c611eb37f7c9c94fc64bc837fa61e0 | |
parent | 950a71ab893e96147c30dd91735af6db73f72ae0 (diff) | |
download | flatbuffers-426f3b8bf2ee9c0bdfd48cd1d3a0145d969d5714.tar.gz flatbuffers-426f3b8bf2ee9c0bdfd48cd1d3a0145d969d5714.tar.bz2 flatbuffers-426f3b8bf2ee9c0bdfd48cd1d3a0145d969d5714.zip |
Missing GenTextFile decl
-rw-r--r-- | include/flatbuffers/idl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/flatbuffers/idl.h b/include/flatbuffers/idl.h index e4a56607..e1008a73 100644 --- a/include/flatbuffers/idl.h +++ b/include/flatbuffers/idl.h @@ -1218,6 +1218,8 @@ extern const char *GenTextFromTable(const Parser &parser, const void *table, std::string *text); extern const char *GenText(const Parser &parser, const void *flatbuffer, std::string *text); +extern const char *GenTextFile(const Parser &parser, const std::string &path, + const std::string &file_name); // Generate GRPC Cpp interfaces. // See idl_gen_grpc.cpp. |