On this page

QtTaskTree::For Class

class QtTaskTree::For

A for loop element. More...

Header: #include <qtasktree.h>
CMake: find_package(Qt6 REQUIRED COMPONENTS TaskTree)
target_link_libraries(mytarget PRIVATE Qt6::TaskTree)
qmake: QT += tasktree
Since: 6.11
Status: Preliminary

This class is under development and is subject to change.

Note: All functions in this class are reentrant.

Public Functions

For(const QtTaskTree::Iterator &iterator)
For(QtTaskTree::For &&other)
QtTaskTree::Group operator>>(const QtTaskTree::For &forItem, const QtTaskTree::Do &doItem)

Detailed Description

A for element, holding an iterator, enabling loop constructs like:

For (RepeatIterator(5)) >> Do {
    task1,
    task2
}

See also Iterator and Do.

Member Function Documentation

[explicit] For::For(const QtTaskTree::Iterator &iterator)

Constructs the For loop element, holding an iterator. Use the stream insertion operator with Do element to place the whole construct in a task tree recipe.

[constexpr noexcept default] For::For(QtTaskTree::For &&other)

Move-constructs an instance of For.

Related Non-Members

QtTaskTree::Group operator>>(const QtTaskTree::For &forItem, const QtTaskTree::Do &doItem)

Combines forItem with doItem body and returns a Group ready to be used in task tree recipes.

Copyright © The Qt Company Ltd. and other contributors. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.