1
0
mirror of https://github.com/autc04/Retro68.git synced 2025-02-13 14:31:25 +00:00

15 lines
295 B
C
Raw Normal View History

2018-05-09 23:16:45 +02:00
#pragma once
#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();