summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/standard_local_system_clock_core.h
blob: 8c1882eb112d5a34be4e65a46771c123c87d054d (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