mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
20 lines
374 B
C++
20 lines
374 B
C++
#pragma once
|
|
|
|
#include "HostSystemServices.h"
|
|
#include "GpCoreDefs.h"
|
|
#include "GpWindows.h"
|
|
|
|
|
|
class GpSystemServices_Win32 final : public PortabilityLayer::HostSystemServices
|
|
{
|
|
public:
|
|
GpSystemServices_Win32();
|
|
|
|
uint32_t GetTime() const override;
|
|
|
|
static GpSystemServices_Win32 *GetInstance();
|
|
|
|
private:
|
|
static GpSystemServices_Win32 ms_instance;
|
|
};
|