18 lines
366 B
C++
18 lines
366 B
C++
#ifndef CACHE_XML_FORMAT_H
|
|
#define CACHE_XML_FORMAT_H
|
|
|
|
#include "emitter.h"
|
|
|
|
#include <iosfwd>
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
namespace caching {
|
|
emitter::ptr create_xml_emitter(std::ostream &out);
|
|
void parse_xml(std::istream &in, emitter::ptr e);
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#endif
|