QtTaskTree::ElseIf Class
class QtTaskTree::ElseIfAn "else if" element used in conditional expressions. More...
| Header: | #include <qconditional.h> |
| CMake: | find_package(Qt6 REQUIRED COMPONENTS TaskTree)target_link_libraries(mytarget PRIVATE Qt6::TaskTree) |
| qmake: | QT += tasktree |
| Since: | 6.11 |
Note: All functions in this class are reentrant.
Public Functions
| ElseIf(Handler &&handler) |
Detailed Description
An alternative condition element of the conditional expressions. Must always be preceeded and followed by Then element.
Member Function Documentation
[explicit] template <typename Handler, int = true> ElseIf::ElseIf(Handler &&handler)
A helper constructor accepting the synchronous handler to be executed when evaluating the initial condition by the running QTaskTree.
It's a shortcut for:
ElseIf (QSyncTask(handler))
See QSyncTask for more information on what handler types are acceptable.