Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
ConfigNotification.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 4/26/23.
3//
4
5#pragma once
6#ifndef ATLASGAMEMANAGER_CONFIGNOTIFICATION_HPP
7#define ATLASGAMEMANAGER_CONFIGNOTIFICATION_HPP
8
9#include <QObject>
10
11namespace config
12{
13
14 class ConfigNotification final : public QObject
15 {
16 Q_OBJECT
17
18 public:
19
20 ConfigNotification( QObject* parent = nullptr );
21
23
24 void notify();
25 signals:
27 };
28
29 void notify();
30
31 namespace internal
32 {
34 }
35} // namespace config
36
37#endif //ATLASGAMEMANAGER_CONFIGNOTIFICATION_HPP
Definition ConfigNotification.hpp:15
virtual ~ConfigNotification()
Definition ConfigNotification.hpp:22
ConfigNotification(QObject *parent=nullptr)
Definition ConfigNotification.cpp:28
void notify()
Definition ConfigNotification.cpp:31
ConfigNotification & getNotifier()
Definition ConfigNotification.cpp:17
Definition ConfigNotification.cpp:12
void notify()
Definition ConfigNotification.cpp:23
Definition Database.cpp:17