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