You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
248 B

#ifndef OTMLEMITTER_H
#define OTMLEMITTER_H
#include "declarations.h"
class OTMLEmitter
{
public:
/// Emits a node and it's children to a std::string
static std::string emitNode(const OTMLNodePtr& node, int currentDepth = -1);
};
#endif