| 15 | class ModelParser { |
| 16 | public: |
| 17 | ModelParser(std::shared_ptr<void> model_ptr, size_t model_length) |
| 18 | : m_model(model_ptr), m_total_length(model_length) { |
| 19 | //! parse the header |
| 20 | parse_header(); |
| 21 | } |
| 22 | |
| 23 | //! parse the Info part of the model, update the network_config and |
| 24 | //! network_io |
nothing calls this directly
no test coverage detected