summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/time/interface.h
blob: 5c63a07f4517087ab97bbd08b35c12284fef2a4b (plain) (tree)
1
2
3
4
5
6
7
8
9







                                            
                         
 
                   
 
                                             
       
                                                                                            
                                                          
                     

  
                            
// 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"

namespace Service::Time {

class SharedMemory;

class Time final : public Module::Interface {
public:
    explicit Time(std::shared_ptr<Module> time, std::shared_ptr<SharedMemory> shared_memory,
                  Core::System& system, const char* name);
    ~Time() override;
};

} // namespace Service::Time