1/*
2 * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9namespace AK {
10
11enum class RecursionDecision {
12 Recurse,
13 Continue,
14 Break,
15};
16
17}
18
19#if USING_AK_GLOBALLY
20using AK::RecursionDecision;
21#endif