summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_concurrent_module/main.cpp
blob: 9412c60638b5906dad449e6800d6996263e35d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2012 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtConcurrent>
#include <QtConcurrent/QtConcurrent>
#include <QtConcurrent/QtConcurrentRun>
#include <QtConcurrentRun>

int main(int argc, char **argv)
{
    QByteArray bytearray = "hello world";
    auto result = QtConcurrent::run(&QByteArray::split, bytearray, ',');
    Q_UNUSED(result);

    return 0;
}