mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
13 lines
281 B
C++
13 lines
281 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();
|
|
std::unique_ptr<AppLauncher> CreateToolLauncher();
|