summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/standard_local_system_clock_core.h
blob: 6320c7af1f70d48187adf79779395387f42578db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2019 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/hle/service/time/system_clock_core.h"

namespace Service::Time::Clock {

class StandardLocalSystemClockCore final : public SystemClockCore {
public:
    explicit StandardLocalSystemClockCore(SteadyClockCore& steady_clock_core_)
        : SystemClockCore{steady_clock_core_} {}
};

} // namespace Service::Time::Clock