2020-03-28 20:51:10 +05:30
|
|
|
// Copyright 2020 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-12-26 00:21:56 +05:30
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
T& Global();
|
|
|
|
|
2020-03-28 21:17:36 +05:30
|
|
|
// Declare explicit specialisation to prevent automatic instantiation
|
2019-12-26 03:13:51 +05:30
|
|
|
class System;
|
|
|
|
template <>
|
|
|
|
System& Global();
|
|
|
|
|
2020-03-28 21:17:36 +05:30
|
|
|
class Timing;
|
|
|
|
template <>
|
|
|
|
Timing& Global();
|
|
|
|
|
2019-12-26 00:21:56 +05:30
|
|
|
} // namespace Core
|