QEverCloud 6.1.0
Unofficial Evernote Cloud API for Qt
EventLoopFinisher.h
Go to the documentation of this file.
1
9#ifndef QEVERCLOUD_EVENT_LOOP_FINISHER_H
10#define QEVERCLOUD_EVENT_LOOP_FINISHER_H
11
12#include "Export.h"
13#include "Helpers.h"
14
15#include <QEventLoop>
16#include <QObject>
17
18namespace qevercloud {
19
20QT_FORWARD_DECLARE_CLASS(EventLoopFinisherPrivate)
21
23{
24 Q_OBJECT
25public:
27 QEventLoop * loop, int exitCode, QObject * parent = Q_NULLPTR);
28
30
31public Q_SLOTS:
33
34private:
35 EventLoopFinisherPrivate * const d_ptr;
36 Q_DECLARE_PRIVATE(EventLoopFinisher)
37};
38
39} // namespace qevercloud
40
41#endif // QEVERCLOUD_EVENT_LOOP_FINISHER_H
#define QEVERCLOUD_EXPORT
Definition: Export.h:19
Definition: EventLoopFinisher.h:23
EventLoopFinisher(QEventLoop *loop, int exitCode, QObject *parent=Q_NULLPTR)
Definition: AsyncResult.h:21