summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/friend/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/friend/interface.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/core/hle/service/friend/interface.cpp b/src/core/hle/service/friend/interface.cpp
deleted file mode 100644
index 7368ccec2..000000000
--- a/src/core/hle/service/friend/interface.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2018 yuzu emulator team
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#include "core/hle/service/friend/interface.h"
-
-namespace Service::Friend {
-
-Friend::Friend(std::shared_ptr<Module> module_, Core::System& system_, const char* name)
- : Interface(std::move(module_), system_, name) {
- static const FunctionInfo functions[] = {
- {0, &Friend::CreateFriendService, "CreateFriendService"},
- {1, &Friend::CreateNotificationService, "CreateNotificationService"},
- {2, nullptr, "CreateDaemonSuspendSessionService"},
- };
- RegisterHandlers(functions);
-}
-
-Friend::~Friend() = default;
-
-} // namespace Service::Friend