Skip to content

Commit e0ca45e

Browse files
author
p12
committed
Images: add inheritance diagram for std::regex_error
1 parent cb768bd commit e0ca45e

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "runtime_error",
38+
tooltip = "std::runtime_error",
39+
URL="cpp/error/runtime_error"
40+
];
41+
42+
e3 [
43+
label = "regex_error",
44+
tooltip = "std::regex_error",
45+
fillcolor = lightgrey
46+
];
47+
48+
e1 -> e2;
49+
e2 -> e3;
50+
}​​

0 commit comments

Comments
 (0)