File: xercescatalogresolver.h

package info (click to toggle)
xmlcopyeditor 1.2.0.12-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 20,632 kB
  • ctags: 2,105
  • sloc: xml: 140,240; cpp: 18,875; sh: 10,420; makefile: 154
file content (27 lines) | stat: -rw-r--r-- 577 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef XERCES_CATALOG_RESOLVER_H
#define XERCES_CATALOG_RESOLVER_H

#include <memory>
#include <string>
#include <xercesc/sax/EntityResolver.hpp>
#include <xercesc/sax/InputSource.hpp>
#include <xercesc/sax/Locator.hpp>
#include "catalogresolver.h"

using namespace xercesc;

class XercesCatalogResolver : public EntityResolver, public CatalogResolver
{
	public:
		XercesCatalogResolver()
		{
		}
		~XercesCatalogResolver()
		{
		}
		virtual InputSource *resolveEntity (
			const XMLCh * const publicID,
			const XMLCh* const systemId );
};

#endif