summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/news/service_creator.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/bcat/news/service_creator.h (renamed from src/core/hle/service/bcat/news/news_interface.h)10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/bcat/news/news_interface.h b/src/core/hle/service/bcat/news/service_creator.h
index d95edba3d..5a62e7c1a 100644
--- a/src/core/hle/service/bcat/news/news_interface.h
+++ b/src/core/hle/service/bcat/news/service_creator.h
@@ -10,17 +10,17 @@ namespace Core {
class System;
}
-namespace Service::BCAT {
+namespace Service::News {
class INewsService;
class INewlyArrivedEventHolder;
class INewsDataService;
class INewsDatabaseService;
class IOverwriteEventHolder;
-class NewsInterface final : public ServiceFramework<NewsInterface> {
+class IServiceCreator final : public ServiceFramework<IServiceCreator> {
public:
- explicit NewsInterface(Core::System& system_, u32 permissions_, const char* name_);
- ~NewsInterface() override;
+ explicit IServiceCreator(Core::System& system_, u32 permissions_, const char* name_);
+ ~IServiceCreator() override;
private:
Result CreateNewsService(OutInterface<INewsService> out_interface);
@@ -32,4 +32,4 @@ private:
u32 permissions;
};
-} // namespace Service::BCAT
+} // namespace Service::News