mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 21:47:45 +00:00
AK: Add IterationDecision.h.
This commit is contained in:
parent
39d1a9ae66
commit
a0bde822ee
1 changed files with 12 additions and 0 deletions
12
AK/IterationDecision.h
Normal file
12
AK/IterationDecision.h
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace AK {
|
||||||
|
|
||||||
|
enum class IterationDecision {
|
||||||
|
Continue,
|
||||||
|
Break,
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
using AK::IterationDecision;
|
Loading…
Add table
Add a link
Reference in a new issue