osb/source/platform/StarDesktopService.hpp

18 lines
238 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#ifndef STAR_DESKTOP_SERVICE_HPP
#define STAR_DESKTOP_SERVICE_HPP
namespace Star {
STAR_CLASS(DesktopService);
class DesktopService {
public:
~DesktopService() = default;
virtual void openUrl(String const& url) = 0;
};
}
#endif