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

19 lines
337 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef PATH_RESOLVER_H
#define PATH_RESOLVER_H
#include <string>
#include <wx/wx.h>
class PathResolver
{
2007-09-08 00:25:30 +02:00
public:
static wxString run (
const wxString& path,
const wxString& anchor = wxEmptyString );
static std::string run (
2007-09-07 23:17:30 +02:00
const std::string& path,
2007-09-08 00:25:30 +02:00
const std::string& anchor = "" );
2007-09-07 23:17:30 +02:00
};
#endif