19 lines
423 B
C
Raw Normal View History

2014-01-23 00:46:03 +00:00
#ifndef ERA_XML_FORMAT_H
#define ERA_XML_FORMAT_H
#include "base/progress_monitor.h"
#include "era/emitter.h"
2014-01-23 00:46:03 +00:00
#include <iosfwd>
//----------------------------------------------------------------
namespace era {
emitter::ptr create_xml_emitter(std::ostream &out);
void parse_xml(std::string const &backup_file, emitter::ptr e, bool quiet);
2014-01-23 00:46:03 +00:00
}
//----------------------------------------------------------------
#endif