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