2018-01-18 16:58:29 +00:00
|
|
|
// Copyright 2018 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"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Time {
|
2018-01-18 16:58:29 +00:00
|
|
|
|
2018-07-24 06:47:41 +00:00
|
|
|
class Time final : public Module::Interface {
|
2018-01-18 16:58:29 +00:00
|
|
|
public:
|
2018-07-24 06:47:41 +00:00
|
|
|
explicit Time(std::shared_ptr<Module> time, const char* name);
|
2018-01-18 16:58:29 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Time
|