summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-21 02:54:34 +0200
committerGitHub <noreply@github.com>2018-08-21 02:54:34 +0200
commit19b05c3f554cadaf6f5040e06fb7caabe0b6682f (patch)
treeff317c15003599b4de47162d771041a12e818286 /src/core/hle/service/acc/acc.h
parentMerge pull request #1125 from bunnei/update-dynarmic (diff)
parentacc: Replace profile_manager include with a forward declaration (diff)
downloadyuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.tar
yuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.tar.gz
yuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.tar.bz2
yuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.tar.lz
yuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.tar.xz
yuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.tar.zst
yuzu-19b05c3f554cadaf6f5040e06fb7caabe0b6682f.zip
Diffstat (limited to 'src/core/hle/service/acc/acc.h')
-rw-r--r--src/core/hle/service/acc/acc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h
index d7c6d2415..c7ed74351 100644
--- a/src/core/hle/service/acc/acc.h
+++ b/src/core/hle/service/acc/acc.h
@@ -4,17 +4,19 @@
#pragma once
-#include "core/hle/service/acc/profile_manager.h"
#include "core/hle/service/service.h"
namespace Service::Account {
+class ProfileManager;
+
class Module final {
public:
class Interface : public ServiceFramework<Interface> {
public:
explicit Interface(std::shared_ptr<Module> module,
std::shared_ptr<ProfileManager> profile_manager, const char* name);
+ ~Interface() override;
void GetUserCount(Kernel::HLERequestContext& ctx);
void GetUserExistence(Kernel::HLERequestContext& ctx);