mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 13:55:08 +00:00
21 lines
377 B
C++
21 lines
377 B
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Types.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
enum class BreakpointChange {
|
|
Added,
|
|
Removed,
|
|
};
|
|
|
|
using BreakpointChangeCallback = Function<void(String const& file, size_t line, BreakpointChange)>;
|
|
}
|