summaryrefslogtreecommitdiffstats
path: root/editor/doc_tools.h
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2023-08-16 14:00:59 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-01-16 14:42:36 +0100
commitdc86483e3aef2879f94457220f32bb973ee1c912 (patch)
tree746fd413103183f2f8babf2d327292d17115b48a /editor/doc_tools.h
parent4b55c81ebae48c53e88654a42c04365391b6159d (diff)
downloadredot-engine-dc86483e3aef2879f94457220f32bb973ee1c912.tar.gz
Add inheriting classes to `DocTools`
Diffstat (limited to 'editor/doc_tools.h')
-rw-r--r--editor/doc_tools.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/doc_tools.h b/editor/doc_tools.h
index 5fffb6be38..7f29cc238a 100644
--- a/editor/doc_tools.h
+++ b/editor/doc_tools.h
@@ -32,16 +32,17 @@
#define DOC_TOOLS_H
#include "core/doc_data.h"
+#include "core/templates/rb_set.h"
class DocTools {
public:
String version;
HashMap<String, DocData::ClassDoc> class_list;
+ HashMap<String, RBSet<String, NaturalNoCaseComparator>> inheriting;
static Error erase_classes(const String &p_dir);
void merge_from(const DocTools &p_data);
- void remove_from(const DocTools &p_data);
void add_doc(const DocData::ClassDoc &p_class_doc);
void remove_doc(const String &p_class_name);
bool has_doc(const String &p_class_name);