summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ecommerce_interface.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 17:43:40 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:32:21 +0100
commit44d2e9021778505e2da8edb23047999cffb4a93a (patch)
treeff69b7169ff0e04e4192f5018b5425ecfda75089 /src/core/hle/service/ns/ecommerce_interface.h
parentns: move IApplicationVersionInterface (diff)
downloadyuzu-44d2e9021778505e2da8edb23047999cffb4a93a.tar
yuzu-44d2e9021778505e2da8edb23047999cffb4a93a.tar.gz
yuzu-44d2e9021778505e2da8edb23047999cffb4a93a.tar.bz2
yuzu-44d2e9021778505e2da8edb23047999cffb4a93a.tar.lz
yuzu-44d2e9021778505e2da8edb23047999cffb4a93a.tar.xz
yuzu-44d2e9021778505e2da8edb23047999cffb4a93a.tar.zst
yuzu-44d2e9021778505e2da8edb23047999cffb4a93a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/ecommerce_interface.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/ecommerce_interface.h b/src/core/hle/service/ns/ecommerce_interface.h
new file mode 100644
index 000000000..4352101f4
--- /dev/null
+++ b/src/core/hle/service/ns/ecommerce_interface.h
@@ -0,0 +1,16 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::NS {
+
+class IECommerceInterface final : public ServiceFramework<IECommerceInterface> {
+public:
+ explicit IECommerceInterface(Core::System& system_);
+ ~IECommerceInterface() override;
+};
+
+} // namespace Service::NS