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