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

15 lines
231 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef CATALOG_RESOLVER_H
#define CATALOG_RESOLVER_H
#include <string>
class CatalogResolver
{
2007-09-08 00:25:30 +02:00
public:
static std::string lookupPublicId (
const std::string& publicId,
const std::string& catalogPath );
2007-09-07 23:17:30 +02:00
};
#endif