| 228 | } |
| 229 | |
| 230 | inline flatbuffers::Offset<ReuseModel> CreateReuseModelDirect( |
| 231 | flatbuffers::FlatBufferBuilder &_fbb, |
| 232 | std::vector<flatbuffers::Offset<fastbotx::ReuseEntry>> *model = nullptr) { |
| 233 | auto model__ = model ? _fbb.CreateVectorOfSortedTables<fastbotx::ReuseEntry>(model) : 0; |
| 234 | return fastbotx::CreateReuseModel( |
| 235 | _fbb, |
| 236 | model__); |
| 237 | } |
| 238 | |
| 239 | inline const fastbotx::ReuseModel *GetReuseModel(const void *buf) { |
| 240 | return flatbuffers::GetRoot<fastbotx::ReuseModel>(buf); |
nothing calls this directly
no test coverage detected