irs.h 407 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 Service::HID {
  7. class IRS final : public ServiceFramework<IRS> {
  8. public:
  9. explicit IRS();
  10. };
  11. class IRS_SYS final : public ServiceFramework<IRS_SYS> {
  12. public:
  13. explicit IRS_SYS();
  14. };
  15. } // namespace Service::HID