mirror of
https://git.tardis.systems/mirrors/yuzu
synced 2025-07-14 20:07:06 +02:00
Now all that remains is for kernel code to be 'shadow-free' and then -Wshadow can be turned into an error.
22 lines
442 B
C++
22 lines
442 B
C++
// 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/time.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Time {
|
|
|
|
class Time final : public Module::Interface {
|
|
public:
|
|
explicit Time(std::shared_ptr<Module> time, Core::System& system_, const char* name_);
|
|
~Time() override;
|
|
};
|
|
|
|
} // namespace Service::Time
|