2020-04-24 23:48:25 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-04-24 23:48:25 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-05-28 20:40:53 +02:00
|
|
|
|
2020-04-24 23:48:25 +03:00
|
|
|
#include <AK/Function.h>
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
2020-08-17 15:22:30 +02:00
|
|
|
namespace HackStudio {
|
|
|
|
|
2020-04-24 23:48:25 +03:00
|
|
|
enum class BreakpointChange {
|
|
|
|
Added,
|
|
|
|
Removed,
|
|
|
|
};
|
|
|
|
|
2021-05-20 17:27:29 -06:00
|
|
|
using BreakpointChangeCallback = Function<void(const String& file, size_t line, BreakpointChange)>;
|
2020-08-17 15:22:30 +02:00
|
|
|
}
|