mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 10:02:56 +01:00
19 lines
288 B
C++
19 lines
288 B
C++
|
// Copyright 2020 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include "Core/System.h"
|
||
|
|
||
|
namespace Core
|
||
|
{
|
||
|
struct System::Impl
|
||
|
{
|
||
|
};
|
||
|
|
||
|
System::System() : m_impl{std::make_unique<Impl>()}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
System::~System() = default;
|
||
|
} // namespace Core
|