.. _program_listing_file_include_flamegpu_io_XMLStateReader.h: Program Listing for File XMLStateReader.h ========================================= |exhale_lsh| :ref:`Return to documentation for file ` (``include/flamegpu/io/XMLStateReader.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef INCLUDE_FLAMEGPU_IO_XMLSTATEREADER_H_ #define INCLUDE_FLAMEGPU_IO_XMLSTATEREADER_H_ #include #include #include "flamegpu/io/StateReader.h" namespace flamegpu { namespace io { class XMLStateReader : public StateReader { public: void parse(const std::string &input_file, const std::shared_ptr &model, Verbosity verbosity) override; private: static std::string getInitialState(const std::shared_ptr &model, const std::string& agent_name); }; } // namespace io } // namespace flamegpu #endif // INCLUDE_FLAMEGPU_IO_XMLSTATEREADER_H_