2020-01-18 08:38:21 +00:00
|
|
|
/*
|
2024-10-04 11:19:50 +00:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 08:38:21 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-07 15:14:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
#include <AK/Platform.h>
|
|
|
|
|
2019-06-07 15:14:16 +00:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
enum class IterationDecision {
|
|
|
|
Continue,
|
|
|
|
Break,
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
#if USING_AK_GLOBALLY
|
2019-06-07 15:14:16 +00:00
|
|
|
using AK::IterationDecision;
|
2022-11-26 11:18:30 +00:00
|
|
|
#endif
|