summaryrefslogtreecommitdiffstats
path: root/src/stlsupport.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-19 13:16:37 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-19 13:16:37 (GMT)
commit742927e23a728fffe53e7bfd1d220f7df4c6f552 (patch)
treeb6ebd4ed848f3d8475cff9a0b5bfae8c0b91b5b4 /src/stlsupport.h
parentb9b3e00db89df02a0a6c03ebc5e9d4a0a3e926a7 (diff)
downloadDoxygen-742927e23a728fffe53e7bfd1d220f7df4c6f552.zip
Doxygen-742927e23a728fffe53e7bfd1d220f7df4c6f552.tar.gz
Doxygen-742927e23a728fffe53e7bfd1d220f7df4c6f552.tar.bz2
Extend built-in STL support with more classes
Diffstat (limited to 'src/stlsupport.h')
-rw-r--r--src/stlsupport.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/stlsupport.h b/src/stlsupport.h
new file mode 100644
index 0000000..6712332
--- /dev/null
+++ b/src/stlsupport.h
@@ -0,0 +1,29 @@
+
+/******************************************************************************
+ *
+ * Copyright (C) 1997-2019 by Dimitri van Heesch.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation under the terms of the GNU General Public License is hereby
+ * granted. No representations are made about the suitability of this software
+ * for any purpose. It is provided "as is" without express or implied warranty.
+ * See the GNU General Public License for more details.
+ *
+ * Documents produced by Doxygen are derivative works derived from the
+ * input used in their production; they are not affected by this license.
+ *
+ */
+
+#ifndef STLSUPPORT_H
+#define STLSUPPORT_H
+
+#include <memory>
+
+class Entry;
+
+/** Add stub entries for the most used classes in the standard template library
+ * @param root Root of the entry tree to add the entries to.
+ */
+void addSTLSupport(std::shared_ptr<Entry> &root);
+
+#endif