1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 13:55:08 +00:00
serenity/Userland/DevTools/HackStudio/Debugger/BreakpointCallback.h
2022-04-01 21:24:45 +01:00

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)>;
}