caps_a.h 405 B

123456789101112131415161718192021
  1. // Copyright 2020 yuzu Emulator Project
  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 Kernel {
  7. class HLERequestContext;
  8. }
  9. namespace Service::Capture {
  10. class CAPS_A final : public ServiceFramework<CAPS_A> {
  11. public:
  12. explicit CAPS_A();
  13. ~CAPS_A() override;
  14. };
  15. } // namespace Service::Capture