mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
12 lines
268 B
C++
12 lines
268 B
C++
class HostTools {
|
|
public:
|
|
virtual ~HostTools() {}
|
|
|
|
virtual String NormalizeExecutablePath(const String& path) const = 0;
|
|
};
|
|
|
|
class LocalHostTools final : public HostTools {
|
|
public:
|
|
String NormalizeExecutablePath(const String& path) const override;
|
|
};
|
|
|