15 lines
177 B
C++
15 lines
177 B
C++
#pragma once
|
|
|
|
namespace Star {
|
|
|
|
STAR_CLASS(DesktopService);
|
|
|
|
class DesktopService {
|
|
public:
|
|
~DesktopService() = default;
|
|
|
|
virtual void openUrl(String const& url) = 0;
|
|
};
|
|
|
|
}
|