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

33 lines
684 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef XML_PARSE_SCHEMA_NS_H
#define XML_PARSE_SCHEMA_NS_H
#include <vector>
#include <expat.h>
#include <string>
#include "wrapexpat.h"
struct ParseSchemaNsData : public ParserData
{
2007-09-08 00:25:30 +02:00
std::vector<std::pair<std::string, std::string> > attributeVector;
XML_Parser p;
2007-09-07 23:17:30 +02:00
};
class XmlParseSchemaNs : public WrapExpat
{
2007-09-08 00:25:30 +02:00
public:
2007-09-07 23:17:30 +02:00
XmlParseSchemaNs();
virtual ~XmlParseSchemaNs();
2007-09-08 00:25:30 +02:00
std::vector<std::pair<std::string, std::string> > getAttributeVector()
{
return d->attributeVector;
}
private:
2007-09-07 23:17:30 +02:00
std::auto_ptr<ParseSchemaNsData> d;
2007-09-08 00:25:30 +02:00
static void XMLCALL start (
void *data,
const XML_Char *el,
const XML_Char **attr );
2007-09-07 23:17:30 +02:00
};
#endif