mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
15 lines
295 B
C++
15 lines
295 B
C++
#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();
|