summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/bcat/module.h')
-rw-r--r--src/core/hle/service/bcat/module.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/bcat/module.h b/src/core/hle/service/bcat/module.h
index f0d63cab0..4af363bfd 100644
--- a/src/core/hle/service/bcat/module.h
+++ b/src/core/hle/service/bcat/module.h
@@ -8,6 +8,8 @@
namespace Service::BCAT {
+class Backend;
+
class Module final {
public:
class Interface : public ServiceFramework<Interface> {
@@ -19,6 +21,7 @@ public:
protected:
std::shared_ptr<Module> module;
+ std::unique_ptr<Backend> backend;
};
};