set.h 439 B

12345678910111213141516171819202122
  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 {
  7. namespace Set {
  8. class SET final : public ServiceFramework<SET> {
  9. public:
  10. explicit SET();
  11. ~SET() = default;
  12. private:
  13. void GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx);
  14. };
  15. } // namespace Set
  16. } // namespace Service