2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-12-29 04:44:39 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-04-24 15:08:23 +00:00
|
|
|
#include "core/hle/service/pctl/module.h"
|
2017-12-29 04:44:39 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::PCTL {
|
2017-12-29 04:44:39 +00:00
|
|
|
|
2018-04-24 15:08:23 +00:00
|
|
|
class PCTL final : public Module::Interface {
|
|
|
|
public:
|
|
|
|
explicit PCTL(std::shared_ptr<Module> module, const char* name);
|
|
|
|
};
|
2017-12-29 04:44:39 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::PCTL
|