fsp_pr.h 400 B

1234567891011121314151617181920
  1. // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "core/hle/service/service.h"
  5. namespace Core {
  6. class System;
  7. }
  8. namespace Service::FileSystem {
  9. class FSP_PR final : public ServiceFramework<FSP_PR> {
  10. public:
  11. explicit FSP_PR(Core::System& system_);
  12. ~FSP_PR() override;
  13. };
  14. } // namespace Service::FileSystem