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