| 12345678910111213141516171819202122232425262728293031 |
- #ifndef QTJSONSERIALIZER_EXCEPTIONCONTEXT_P_H
- #define QTJSONSERIALIZER_EXCEPTIONCONTEXT_P_H
- #include "qtjsonserializer_global.h"
- #include "exception.h"
- #include <QtCore/QMetaProperty>
- #include <QtCore/QThreadStorage>
- #include <QtCore/QLoggingCategory>
- namespace QtJsonSerializer {
- class Q_JSONSERIALIZER_EXPORT ExceptionContext
- {
- public:
- ExceptionContext(const QMetaProperty &property);
- ExceptionContext(int propertyType, const QByteArray &hint);
- ~ExceptionContext();
- static SerializationException::PropertyTrace currentContext();
- static int currentDepth();
- private:
- static QThreadStorage<SerializationException::PropertyTrace> contextStore;
- };
- Q_DECLARE_LOGGING_CATEGORY(logExceptCtx)
- }
- #endif // QTJSONSERIALIZER_EXCEPTIONCONTEXT_P_H
|