summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/omm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/omm.h')
-rw-r--r--src/core/hle/service/am/omm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/am/omm.h b/src/core/hle/service/am/omm.h
index 59dc91b72..3766150fe 100644
--- a/src/core/hle/service/am/omm.h
+++ b/src/core/hle/service/am/omm.h
@@ -6,11 +6,15 @@
#include "core/hle/service/service.h"
+namespace Core {
+class System;
+}
+
namespace Service::AM {
class OMM final : public ServiceFramework<OMM> {
public:
- explicit OMM();
+ explicit OMM(Core::System& system_);
~OMM() override;
};