Qx v0.7
Qt Extensions Library
Loading...
Searching...
No Matches
Qx::error_type Concept Reference

Specifies that a type is a Qx error type. More...

Concept definition

template<class E>
concept Qx::error_type = requires(E type) {
[]<CStringLiteral Y, quint16 Z>(AbstractError<Y, Z>&){}(type);
}
The AbstractError template class completes the Error interface and acts as the base class from which ...
Definition qx-abstracterror.h:88
Specifies that a type is a Qx error type.
Definition qx-abstracterror.h:122
CStringLiteral acts like a typedef/alias for a StringLiteral that uses char as its storage type.
Definition qx-stringliteral.h:194

Detailed Description

Satisfied if E derives from and instantiates AbstractError.