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

15 lines
232 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
{
public:
static std::string lookupPublicId(
const std::string& publicId,
const std::string& catalogPath);
};
#endif