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

17 lines
356 B
C
Raw Normal View History

2011-08-14 04:09:11 +02:00
#ifndef OTMLDECLARATIONS_H
#define OTMLDECLARATIONS_H
#include <global.h>
class OTMLNode;
class OTMLDocument;
class OTMLParser;
class OTMLEmitter;
typedef std::shared_ptr<OTMLNode> OTMLNodePtr;
typedef std::shared_ptr<OTMLDocument> OTMLDocumentPtr;
typedef std::weak_ptr<OTMLNode> OTMLNodeWeakPtr;
typedef std::vector<OTMLNodePtr> OTMLNodeList;
#endif