Files
dolphin/Source/Core/Core/System.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
265 B
C++
Raw Normal View History

2020-12-19 22:32:55 -05:00
// Copyright 2020 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-19 22:32:55 -05:00
#include "Core/System.h"
namespace Core
{
struct System::Impl
{
};
System::System() : m_impl{std::make_unique<Impl>()}
{
}
System::~System() = default;
} // namespace Core