2020-03-13 22:07:44 +00:00
|
|
|
/*
|
2024-10-04 11:19:50 +00:00
|
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
|
2020-03-13 22:07:44 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-13 22:07:44 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-07 19:07:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-02-07 14:15:10 +00:00
|
|
|
namespace Syntax {
|
2020-02-07 19:07:15 +00:00
|
|
|
|
2023-08-29 09:13:41 +00:00
|
|
|
class Document;
|
2021-02-07 14:15:10 +00:00
|
|
|
class Highlighter;
|
2021-02-07 15:56:02 +00:00
|
|
|
class HighlighterClient;
|
2023-08-29 09:13:41 +00:00
|
|
|
class TextPosition;
|
|
|
|
class TextRange;
|
2020-02-07 19:07:15 +00:00
|
|
|
|
|
|
|
}
|