diff options
author | Lioncash <mathew1800@gmail.com> | 2019-06-05 22:20:24 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-06-05 22:20:24 +0200 |
commit | 8304aaf28260b3971b511cad915fbdcf8f16fbfb (patch) | |
tree | a59ab06a08695b1fba849adc95d946ffa61ef0be /src | |
parent | Merge pull request #2526 from lioncash/global (diff) | |
download | yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.tar yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.tar.gz yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.tar.bz2 yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.tar.lz yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.tar.xz yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.tar.zst yuzu-8304aaf28260b3971b511cad915fbdcf8f16fbfb.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/ns/ns.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/hle/service/ns/ns.h b/src/core/hle/service/ns/ns.h index 0f4bab4cb..0e8256cb4 100644 --- a/src/core/hle/service/ns/ns.h +++ b/src/core/hle/service/ns/ns.h @@ -11,13 +11,13 @@ namespace Service::NS { class IAccountProxyInterface final : public ServiceFramework<IAccountProxyInterface> { public: explicit IAccountProxyInterface(); - ~IAccountProxyInterface(); + ~IAccountProxyInterface() override; }; class IApplicationManagerInterface final : public ServiceFramework<IApplicationManagerInterface> { public: explicit IApplicationManagerInterface(); - ~IApplicationManagerInterface(); + ~IApplicationManagerInterface() override; ResultVal<u8> GetApplicationDesiredLanguage(u32 supported_languages); ResultVal<u64> ConvertApplicationLanguageToLanguageCode(u8 application_language); @@ -31,43 +31,43 @@ private: class IApplicationVersionInterface final : public ServiceFramework<IApplicationVersionInterface> { public: explicit IApplicationVersionInterface(); - ~IApplicationVersionInterface(); + ~IApplicationVersionInterface() override; }; class IContentManagerInterface final : public ServiceFramework<IContentManagerInterface> { public: explicit IContentManagerInterface(); - ~IContentManagerInterface(); + ~IContentManagerInterface() override; }; class IDocumentInterface final : public ServiceFramework<IDocumentInterface> { public: explicit IDocumentInterface(); - ~IDocumentInterface(); + ~IDocumentInterface() override; }; class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> { public: explicit IDownloadTaskInterface(); - ~IDownloadTaskInterface(); + ~IDownloadTaskInterface() override; }; class IECommerceInterface final : public ServiceFramework<IECommerceInterface> { public: explicit IECommerceInterface(); - ~IECommerceInterface(); + ~IECommerceInterface() override; }; class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> { public: explicit IFactoryResetInterface(); - ~IFactoryResetInterface(); + ~IFactoryResetInterface() override; }; class NS final : public ServiceFramework<NS> { public: explicit NS(const char* name); - ~NS(); + ~NS() override; std::shared_ptr<IApplicationManagerInterface> GetApplicationManagerInterface() const; |