mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
a2a553b286
Similar to IterationDecision, this can be returned from callbacks passed to recursive traversal functions to signal how to proceed.
20 lines
243 B
C++
20 lines
243 B
C++
/*
|
|
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace AK {
|
|
|
|
enum class RecursionDecision {
|
|
Recurse,
|
|
Continue,
|
|
Break,
|
|
};
|
|
|
|
}
|
|
|
|
using AK::RecursionDecision;
|