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

21 lines
490 B
C
Raw Normal View History

2009-11-06 18:06:12 +01:00
#ifndef CATALOG_RESOLVER_THREAD_H
#define CATALOG_RESOLVER_THREAD_H
#include <utility>
#include <string>
#include <wx/thread.h>
class CatalogResolverThread : public wxThread
{
public:
CatalogResolverThread ( std::string *publicId, std::string *systemId, bool *finished, const std::string& catalogPath );
virtual void *Entry();
virtual void OnExit();
private:
std::string *myPublicIdPtr, *mySystemIdPtr;
std::string myCatalogPath;
bool *myFinishedPtr;
};
#endif