xml-copy-editor-code/src/xsllocator.h

33 lines
651 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef XSL_LOCATOR_H
#define XSL_LOCATOR_H
#include <expat.h>
#include <string>
#include "wrapexpat.h"
struct XslLocatorData : public ParserData
{
2007-09-08 00:25:30 +02:00
std::string xslLocation;
XML_Parser parser;
2007-09-07 23:17:30 +02:00
};
class XslLocator : public WrapExpat
{
2007-09-08 00:25:30 +02:00
public:
2007-09-07 23:17:30 +02:00
XslLocator();
virtual ~XslLocator();
std::string getXslLocation();
2007-09-08 00:25:30 +02:00
private:
2007-09-07 23:17:30 +02:00
std::auto_ptr<XslLocatorData> d;
2007-09-08 00:25:30 +02:00
static void XMLCALL starthandler (
void *data,
const XML_Char *el,
const XML_Char **attr );
static void XMLCALL processingInstructionHandler (
void *userData,
const XML_Char *target,
const XML_Char *data );
2007-09-07 23:17:30 +02:00
};
#endif