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