tibia-client/src/framework/otml/otmlemitter.h

14 lines
248 B
C++

#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