summaryrefslogtreecommitdiffstats
path: root/examples/diagrams_d.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-02-15 20:10:52 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-02-15 20:10:52 (GMT)
commitddbc18f5fb336d3a83521404620b6734b13e5610 (patch)
tree53992eaf82cf36cb6c455368239e61516595cd37 /examples/diagrams_d.h
parent397fa609f53790f008f33d8ce4e6e26bce3c1279 (diff)
downloadDoxygen-ddbc18f5fb336d3a83521404620b6734b13e5610.zip
Doxygen-ddbc18f5fb336d3a83521404620b6734b13e5610.tar.gz
Doxygen-ddbc18f5fb336d3a83521404620b6734b13e5610.tar.bz2
Tagged the release as 1.1.0
Forgot a couple of example files.
Diffstat (limited to 'examples/diagrams_d.h')
-rw-r--r--examples/diagrams_d.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/diagrams_d.h b/examples/diagrams_d.h
new file mode 100644
index 0000000..3e635ce
--- /dev/null
+++ b/examples/diagrams_d.h
@@ -0,0 +1,7 @@
+#ifndef _DIAGRAM_D_H
+#define _DIAGRAM_D_H
+#include "diagrams_a.h"
+#include "diagrams_b.h"
+class C;
+class D : virtual protected A, private B { public: C m_c; };
+#endif