summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm/apm.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-10 05:17:37 +0100
committerbunnei <bunneidev@gmail.com>2018-02-10 05:33:49 +0100
commit0532de6559b05a5af8177e9771a99f2cbd5985db (patch)
tree839e44032a2733bc9cf5db0d883a166422d187b2 /src/core/hle/service/apm/apm.h
parentvi: Implement TransactParcelAuto. (diff)
downloadyuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.tar
yuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.tar.gz
yuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.tar.bz2
yuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.tar.lz
yuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.tar.xz
yuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.tar.zst
yuzu-0532de6559b05a5af8177e9771a99f2cbd5985db.zip
Diffstat (limited to 'src/core/hle/service/apm/apm.h')
-rw-r--r--src/core/hle/service/apm/apm.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/core/hle/service/apm/apm.h b/src/core/hle/service/apm/apm.h
index 90a1afbbc..070ab21f8 100644
--- a/src/core/hle/service/apm/apm.h
+++ b/src/core/hle/service/apm/apm.h
@@ -14,13 +14,10 @@ enum class PerformanceMode : u8 {
Docked = 1,
};
-class APM final : public ServiceFramework<APM> {
+class Module final {
public:
- APM();
- ~APM() = default;
-
-private:
- void OpenSession(Kernel::HLERequestContext& ctx);
+ Module() = default;
+ ~Module() = default;
};
/// Registers all AM services with the specified service manager.