2016-05-18 03:28:25 +02:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-03-16 10:36:35 +01:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
namespace Service {
|
|
|
|
namespace ACT {
|
2016-05-18 03:28:25 +02:00
|
|
|
|
2016-12-15 20:51:42 +01:00
|
|
|
/// Initializes all ACT services
|
2018-03-16 10:36:35 +01:00
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
|
|
|
Interface(std::shared_ptr<Module> act, const char* name);
|
|
|
|
~Interface();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::shared_ptr<Module> act;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
2016-05-18 03:28:25 +02:00
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
} // namespace ACT
|
|
|
|
} // namespace Service
|