Serenity Operating System
at master 21 lines 397 B view raw
1/* 2 * Copyright (c) 2020, Itamar S. <itamar8910@gmail.com> 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#pragma once 8 9#include <AK/DeprecatedString.h> 10#include <AK/Function.h> 11#include <AK/Types.h> 12 13namespace HackStudio { 14 15enum class BreakpointChange { 16 Added, 17 Removed, 18}; 19 20using BreakpointChangeCallback = Function<void(DeprecatedString const& file, size_t line, BreakpointChange)>; 21}