-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathQtLoopException.h
More file actions
36 lines (26 loc) · 1.05 KB
/
Copy pathQtLoopException.h
File metadata and controls
36 lines (26 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef NSAPPLICATION_CQTLOOPEXCEPTION_H
#define NSAPPLICATION_CQTLOOPEXCEPTION_H
#include "Library/Singleton/AnyGlobalAccess.h"
#include "Qt/QtLoopExceptionHandler.h"
namespace NSApplication {
namespace NSQtLoopExceptionHandlerDetail {
namespace nl = NSLibrary;
namespace nq = NSQt;
class CQtLoopExceptionMain;
class CQtLoopExceptionInit
: nl::CAnyGlobalInitializer<nq::CQtLoopExceptionHandler,
CQtLoopExceptionMain> {
using CBase = nl::CAnyGlobalInitializer<nq::CQtLoopExceptionHandler,
CQtLoopExceptionMain>;
public:
using CBase::CBase;
};
class CQtLoopExceptionAccess
: public nl::CAnyGlobalAccess<nq::CQtLoopExceptionHandler,
CQtLoopExceptionMain> {};
} // namespace NSQtLoopExceptionHandlerDetail
using CQtLoopExceptionInit =
NSQtLoopExceptionHandlerDetail::CQtLoopExceptionInit;
using CQtLoopException = NSQtLoopExceptionHandlerDetail::CQtLoopExceptionAccess;
} // namespace NSApplication
#endif // NSAPPLICATION_CQTLOOPEXCEPTION_H