mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
d8f92bdf96
fixes #6758
16 lines
238 B
C++
16 lines
238 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
class NetworkTask {
|
|
public:
|
|
static void spawn();
|
|
static bool is_current();
|
|
};
|
|
}
|