2013-09-11 16:10:46 +05:30
|
|
|
#ifndef CACHE_XML_FORMAT_H
|
|
|
|
#define CACHE_XML_FORMAT_H
|
|
|
|
|
2014-08-26 17:35:21 +05:30
|
|
|
#include "base/progress_monitor.h"
|
2013-09-11 16:10:46 +05:30
|
|
|
#include "emitter.h"
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace caching {
|
|
|
|
emitter::ptr create_xml_emitter(std::ostream &out);
|
2014-08-26 17:35:21 +05:30
|
|
|
void parse_xml(std::istream &in, emitter::ptr e,
|
|
|
|
size_t input_len, base::progress_monitor &monitor);
|
2013-09-11 16:10:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|