2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2016-01-15 14:55:33 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2015-11-25 15:21:24 +01:00
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
#include <functional>
|
2015-11-25 15:21:24 +01:00
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
namespace ProcessEventUtilities
|
2015-11-25 15:21:24 +01:00
|
|
|
{
|
2016-09-15 17:41:41 +02:00
|
|
|
bool processEventsUntilTrue(std::function<bool ()> condition, int timeOutInMs);
|
|
|
|
|
}
|