1 /* libide-code.h
2  *
3  * Copyright 2018-2019 Christian Hergert <chergert@redhat.com>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * SPDX-License-Identifier: GPL-3.0-or-later
19  */
20 
21 #pragma once
22 
23 #include <libide-core.h>
24 #include <libide-io.h>
25 #include <libide-threading.h>
26 
27 G_BEGIN_DECLS
28 
29 #define IDE_CODE_INSIDE
30 
31 #include "ide-code-enums.h"
32 #include "ide-code-types.h"
33 
34 #include "ide-buffer.h"
35 #include "ide-buffer-addin.h"
36 #include "ide-buffer-change-monitor.h"
37 #include "ide-buffer-manager.h"
38 #include "ide-code-index-entries.h"
39 #include "ide-code-index-entry.h"
40 #include "ide-code-indexer.h"
41 #include "ide-diagnostic.h"
42 #include "ide-diagnostic-provider.h"
43 #include "ide-diagnostics.h"
44 #include "ide-diagnostics-manager.h"
45 #include "ide-file-settings.h"
46 #include "ide-formatter-options.h"
47 #include "ide-formatter.h"
48 #include "ide-highlight-engine.h"
49 #include "ide-highlight-index.h"
50 #include "ide-highlighter.h"
51 #include "ide-indent-style.h"
52 #include "ide-language.h"
53 #include "ide-location.h"
54 #include "ide-range.h"
55 #include "ide-rename-provider.h"
56 #include "ide-source-iter.h"
57 #include "ide-source-style-scheme.h"
58 #include "ide-spaces-style.h"
59 #include "ide-symbol-node.h"
60 #include "ide-symbol-resolver.h"
61 #include "ide-symbol-tree.h"
62 #include "ide-symbol.h"
63 #include "ide-text-edit.h"
64 #include "ide-text-iter.h"
65 #include "ide-unsaved-file.h"
66 #include "ide-unsaved-files.h"
67 
68 #undef IDE_CODE_INSIDE
69 
70 G_END_DECLS
71