diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-08-16 14:00:59 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-16 14:42:36 +0100 |
commit | dc86483e3aef2879f94457220f32bb973ee1c912 (patch) | |
tree | 746fd413103183f2f8babf2d327292d17115b48a /editor/doc_tools.h | |
parent | 4b55c81ebae48c53e88654a42c04365391b6159d (diff) | |
download | redot-engine-dc86483e3aef2879f94457220f32bb973ee1c912.tar.gz |
Add inheriting classes to `DocTools`
Diffstat (limited to 'editor/doc_tools.h')
-rw-r--r-- | editor/doc_tools.h | 3 |
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); |