Files
eden/src/core/hle/service/pctl/pctl.h
T

22 lines
477 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2017-12-28 23:44:39 -05:00
#pragma once
#include "core/hle/service/pctl/pctl_module.h"
2017-12-28 23:44:39 -05:00
namespace Core {
class System;
}
namespace Service::PCTL {
2017-12-28 23:44:39 -05:00
class PCTL final : public Module::Interface {
public:
explicit PCTL(Core::System& system_, std::shared_ptr<Module> module_, const char* name,
Capability capability_);
~PCTL() override;
};
2017-12-28 23:44:39 -05:00
} // namespace Service::PCTL