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