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