mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
12 lines
230 B
C++
12 lines
230 B
C++
#include <memory>
|
|
#include <MacTypes.h>
|
|
|
|
class AppLauncher
|
|
{
|
|
public:
|
|
virtual bool Launch(ConstStr255Param name) = 0;
|
|
virtual bool IsRunning(ConstStr255Param name) = 0;
|
|
};
|
|
|
|
std::unique_ptr<AppLauncher> CreateAppLauncher();
|