serenity/AK/IterationDecision.h

23 lines
294 B
C
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
2019-06-07 15:14:16 +00:00
#pragma once
#include <AK/Platform.h>
2019-06-07 15:14:16 +00:00
namespace AK {
enum class IterationDecision {
Continue,
Break,
};
}
#if USING_AK_GLOBALLY
2019-06-07 15:14:16 +00:00
using AK::IterationDecision;
#endif