merge some changes from develop branch; modernize and clean-up code; remove support for compiling without POCO_WIN32_UTF8

This commit is contained in:
Günter Obiltschnig
2020-01-09 10:08:09 +01:00
parent 7c177b6f89
commit 1bf40a0cd2
389 changed files with 3029 additions and 4111 deletions

View File

@@ -106,6 +106,16 @@ protected:
///
/// A Task should use this method in favor of Thread::sleep().
bool yield();
/// Yields cpu to other threads
///
/// If the task is cancelled while it is suspended,
/// yield() will return true. If the tasks resumes
/// without being cancelled, the
/// return value is false.
///
/// A Task should use this method in favor of Thread::yield().
void setProgress(float progress);
/// Sets the task's progress.
/// The value should be between 0.0 (just started)