fsp_pr.h 416 B

123456789101112131415161718192021
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/service.h"
  6. namespace Core {
  7. class System;
  8. }
  9. namespace Service::FileSystem {
  10. class FSP_PR final : public ServiceFramework<FSP_PR> {
  11. public:
  12. explicit FSP_PR(Core::System& system_);
  13. ~FSP_PR() override;
  14. };
  15. } // namespace Service::FileSystem