#include "codegen/python.h" #include <set> #include <sstream> #include <string> #include <utility> namespace flatbuffers { namespace python { Version::Version(const std::string &version) { … } bool Version::IsValid() const { … } std::set<std::string> Keywords(const Version &version) { … } const python::Import &python::Imports::Import(const std::string &module) { … } const python::Import &python::Imports::Import(const std::string &module, const std::string &name) { … } } // namespace python } // namespace flatbuffers