2018-01-19 20:44:58 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service {
|
|
|
|
namespace Set {
|
|
|
|
|
|
|
|
class SET final : public ServiceFramework<SET> {
|
|
|
|
public:
|
2018-03-02 08:49:35 +00:00
|
|
|
explicit SET();
|
2018-01-19 20:44:58 +00:00
|
|
|
~SET() = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Set
|
|
|
|
} // namespace Service
|