|
|
@ -36,6 +36,10 @@ class ArchiveManager;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace Service
|
|
|
|
} // namespace Service
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
class KernelSystem;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
|
|
|
|
class System {
|
|
|
|
class System {
|
|
|
@ -167,6 +171,12 @@ public:
|
|
|
|
/// Gets a const reference to the archive manager
|
|
|
|
/// Gets a const reference to the archive manager
|
|
|
|
const Service::FS::ArchiveManager& ArchiveManager() const;
|
|
|
|
const Service::FS::ArchiveManager& ArchiveManager() const;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Gets a reference to the kernel
|
|
|
|
|
|
|
|
Kernel::KernelSystem& Kernel();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Gets a const reference to the kernel
|
|
|
|
|
|
|
|
const Kernel::KernelSystem& Kernel() const;
|
|
|
|
|
|
|
|
|
|
|
|
PerfStats perf_stats;
|
|
|
|
PerfStats perf_stats;
|
|
|
|
FrameLimiter frame_limiter;
|
|
|
|
FrameLimiter frame_limiter;
|
|
|
|
|
|
|
|
|
|
|
@ -241,6 +251,8 @@ private:
|
|
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<Service::FS::ArchiveManager> archive_manager;
|
|
|
|
std::unique_ptr<Service::FS::ArchiveManager> archive_manager;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<Kernel::KernelSystem> kernel;
|
|
|
|
|
|
|
|
|
|
|
|
static System s_instance;
|
|
|
|
static System s_instance;
|
|
|
|
|
|
|
|
|
|
|
|
ResultStatus status = ResultStatus::Success;
|
|
|
|
ResultStatus status = ResultStatus::Success;
|
|
|
|