mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-18 22:19:50 +00:00
The class is ref-counted, so using forward declarations in a lot of headers currently including Thread.h is an easy change.
16 lines
225 B
C++
16 lines
225 B
C++
/*
|
|
* Copyright (c) 2023-2025, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Threading {
|
|
|
|
class Thread;
|
|
|
|
template<typename ErrorType>
|
|
class WorkerThread;
|
|
|
|
}
|