forked from moonpower/azahar-UWP
This can be removed as it's not used. Even if it were however, it would be an incorrect forward declaration, as ServiceManager exists within the Service::SM namespace, not the top-level SM namespace.
16 lines
277 B
C++
16 lines
277 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::IR {
|
|
|
|
void InstallInterfaces(Core::System& system);
|
|
|
|
} // namespace Service::IR
|