Add missing "public"

This commit is contained in:
VolcaEM
2020-06-22 21:32:06 +02:00
committed by GitHub
parent 0b8036076a
commit 776ee61c05
+8 -8
View File
@@ -222,7 +222,7 @@ public:
}; };
class IOAuthProcedureForNintendoAccountLinkage final class IOAuthProcedureForNintendoAccountLinkage final
: ServiceFramework<IOAuthProcedureForNintendoAccountLinkage> { : public ServiceFramework<IOAuthProcedureForNintendoAccountLinkage> {
public: public:
explicit IOAuthProcedureForNintendoAccountLinkage(Common::UUID user_id) explicit IOAuthProcedureForNintendoAccountLinkage(Common::UUID user_id)
: ServiceFramework("IOAuthProcedureForNintendoAccountLinkage") { : ServiceFramework("IOAuthProcedureForNintendoAccountLinkage") {
@@ -243,7 +243,7 @@ public:
} }
}; };
class INotifier final : ServiceFramework<INotifier> { class INotifier final : public ServiceFramework<INotifier> {
public: public:
explicit INotifier(Common::UUID user_id) : ServiceFramework("INotifier") { explicit INotifier(Common::UUID user_id) : ServiceFramework("INotifier") {
// clang-format off // clang-format off
@@ -438,7 +438,7 @@ public:
: IProfileCommon("IProfileEditor", true, user_id, profile_manager) {} : IProfileCommon("IProfileEditor", true, user_id, profile_manager) {}
}; };
class IAsyncContext final : ServiceFramework<IAsyncContext> { class IAsyncContext final : public ServiceFramework<IAsyncContext> {
public: public:
explicit IAsyncContext(Common::UUID user_id) : ServiceFramework("IAsyncContext") { explicit IAsyncContext(Common::UUID user_id) : ServiceFramework("IAsyncContext") {
// clang-format off // clang-format off
@@ -467,7 +467,7 @@ public:
} }
}; };
class IGuestLoginRequest final : ServiceFramework<IGuestLoginRequest> { class IGuestLoginRequest final : public ServiceFramework<IGuestLoginRequest> {
public: public:
explicit IGuestLoginRequest(Common::UUID) : ServiceFramework("IGuestLoginRequest") { explicit IGuestLoginRequest(Common::UUID) : ServiceFramework("IGuestLoginRequest") {
// clang-format off // clang-format off
@@ -527,7 +527,7 @@ private:
// 6.0.0+ // 6.0.0+
class IAsyncNetworkServiceLicenseKindContext final class IAsyncNetworkServiceLicenseKindContext final
: ServiceFramework<IAsyncNetworkServiceLicenseKindContext> { : public ServiceFramework<IAsyncNetworkServiceLicenseKindContext> {
public: public:
explicit IAsyncNetworkServiceLicenseKindContext(Common::UUID user_id) explicit IAsyncNetworkServiceLicenseKindContext(Common::UUID user_id)
: ServiceFramework("IAsyncNetworkServiceLicenseKindContext") { : ServiceFramework("IAsyncNetworkServiceLicenseKindContext") {
@@ -547,7 +547,7 @@ public:
// 8.0.0+ // 8.0.0+
class IOAuthProcedureForUserRegistration final class IOAuthProcedureForUserRegistration final
: ServiceFramework<IOAuthProcedureForUserRegistration> { : public ServiceFramework<IOAuthProcedureForUserRegistration> {
public: public:
explicit IOAuthProcedureForUserRegistration(Common::UUID user_id) explicit IOAuthProcedureForUserRegistration(Common::UUID user_id)
: ServiceFramework("IOAuthProcedureForUserRegistration") { : ServiceFramework("IOAuthProcedureForUserRegistration") {
@@ -571,7 +571,7 @@ public:
} }
}; };
class DAUTH_O final : ServiceFramework<DAUTH_O> { class DAUTH_O final : public ServiceFramework<DAUTH_O> {
public: public:
explicit DAUTH_O(Common::UUID) : ServiceFramework("dauth:o") { explicit DAUTH_O(Common::UUID) : ServiceFramework("dauth:o") {
// clang-format off // clang-format off
@@ -590,7 +590,7 @@ public:
}; };
// 6.0.0+ // 6.0.0+
class IAsyncResult : ServiceFramework<IAsyncResult> { class IAsyncResult : public ServiceFramework<IAsyncResult> {
public: public:
explicit IAsyncResult(Common::UUID user_id) : ServiceFramework("IAsyncResult") { explicit IAsyncResult(Common::UUID user_id) : ServiceFramework("IAsyncResult") {
// clang-format off // clang-format off