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

17 lines
388 B
C
Raw Normal View History

2011-08-15 16:06:15 +02:00
#ifndef FRAMEWORK_OTML_DECLARATIONS_H
#define FRAMEWORK_OTML_DECLARATIONS_H
2011-08-14 04:09:11 +02:00
2011-08-15 16:06:15 +02:00
#include <framework/global.h>
2011-08-14 04:09:11 +02:00
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