summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time_s.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/time/time_s.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/core/hle/service/time/time_s.h b/src/core/hle/service/time/time_s.h
index 073227910..abc2a8c5a 100644
--- a/src/core/hle/service/time/time_s.h
+++ b/src/core/hle/service/time/time_s.h
@@ -4,19 +4,14 @@
#pragma once
-#include "core/hle/kernel/hle_ipc.h"
-#include "core/hle/service/service.h"
+#include "core/hle/service/time/time.h"
namespace Service {
namespace Time {
-class TimeS final : public ServiceFramework<TimeS> {
+class TIME_S final : public Module::Interface {
public:
- TimeS();
- ~TimeS() = default;
-
-private:
- void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx);
+ explicit TIME_S(std::shared_ptr<Module> time);
};
} // namespace Time