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

29 lines
532 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef XML_SCHEMA_LOCATOR_H
#define XML_SCHEMA_LOCATOR_H
#include <expat.h>
#include <string>
#include "wrapexpat.h"
struct SchemaLocatorData
{
2007-09-08 00:25:30 +02:00
std::string schemaLocation;
XML_Parser parser;
2007-09-07 23:17:30 +02:00
};
class XmlSchemaLocator : public WrapExpat
{
2007-09-08 00:25:30 +02:00
public:
2007-09-07 23:17:30 +02:00
XmlSchemaLocator();
virtual ~XmlSchemaLocator();
std::string getSchemaLocation();
2007-09-08 00:25:30 +02:00
private:
2007-09-07 23:17:30 +02:00
std::auto_ptr<SchemaLocatorData> d;
2007-09-08 00:25:30 +02:00
static void XMLCALL starthandler (
void *data,
const XML_Char *el,
const XML_Char **attr );
2007-09-07 23:17:30 +02:00
};
#endif