Skip to content

Commit 9ff2004

Browse files
author
p12
committed
Images: add inheritance diagrams of locale classes
1 parent 4b475c9 commit 9ff2004

13 files changed

+497
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
21+
@SETTINGS@
22+
23+
base [
24+
label = "codecvt_base",
25+
tooltip = "std::codecvt_base",
26+
URL="cpp/locale/codecvt_base"
27+
];
28+
f1 [
29+
label = "locale::facet",
30+
tooltip = "std::locale::facet",
31+
URL="cpp/locale/locale/facet"
32+
];
33+
facet [
34+
label = <codecvt<br/><font color="#808080">&lt;Intern, Extern, State&gt;</font>>,
35+
tooltip = "std::codecvt",
36+
fillcolor = lightgrey
37+
];
38+
39+
facet -> base;
40+
facet -> f1;
41+
}​​
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
21+
@SETTINGS@
22+
23+
f1 [
24+
label = "locale::facet",
25+
tooltip = "std::locale::facet",
26+
URL="cpp/locale/locale/facet"
27+
];
28+
facet [
29+
label = <collate<br/><font color="#808080">&lt;CharT&gt;</font>>,
30+
tooltip = "std::collate",
31+
fillcolor = lightgrey
32+
];
33+
34+
facet -> f1;
35+
}​​
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
21+
@SETTINGS@
22+
23+
base [
24+
label = "ctype_base",
25+
tooltip = "std::ctype_base",
26+
URL="cpp/locale/ctype_base"
27+
];
28+
f1 [
29+
label = "locale::facet",
30+
tooltip = "std::locale::facet",
31+
URL="cpp/locale/locale/facet"
32+
];
33+
facet [
34+
label = <ctype<br/><font color="#808080">&lt;CharT&gt;</font>>,
35+
tooltip = "std::ctype",
36+
fillcolor = lightgrey
37+
];
38+
39+
facet -> base;
40+
facet -> f1;
41+
}​​
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
21+
@SETTINGS@
22+
23+
base [
24+
label = "ctype_base",
25+
tooltip = "std::ctype_base",
26+
URL="cpp/locale/ctype_base"
27+
];
28+
f1 [
29+
label = "locale::facet",
30+
tooltip = "std::locale::facet",
31+
URL="cpp/locale/locale/facet"
32+
];
33+
facet [
34+
label = "ctype<char>",
35+
tooltip = "std::ctype<char>",
36+
fillcolor = lightgrey
37+
];
38+
39+
facet -> base;
40+
facet -> f1;
41+
}​​
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
21+
@SETTINGS@
22+
23+
base [
24+
label = "messages_base",
25+
tooltip = "std::messages_base",
26+
URL="cpp/locale/messages_base"
27+
];
28+
f1 [
29+
label = "locale::facet",
30+
tooltip = "std::locale::facet",
31+
URL="cpp/locale/locale/facet"
32+
];
33+
facet [
34+
label = <messages<br/><font color="#808080">&lt;CharT&gt;</font>>,
35+
tooltip = "std::messages",
36+
fillcolor = lightgrey
37+
];
38+
39+
facet -> base;
40+
facet -> f1;
41+
}​​
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
21+
@SETTINGS@
22+
23+
f1 [
24+
label = "locale::facet",
25+
tooltip = "std::locale::facet",
26+
URL="cpp/locale/locale/facet"
27+
];
28+
facet [
29+
label = <money_get<br/><font color="#808080">&lt;CharT, InputIt&gt;</font>>,
30+
tooltip = "std::money_get",
31+
fillcolor = lightgrey
32+
];
33+
34+
facet -> f1;
35+
}​​
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
21+
@SETTINGS@
22+
23+
f1 [
24+
label = "locale::facet",
25+
tooltip = "std::locale::facet",
26+
URL="cpp/locale/locale/facet"
27+
];
28+
facet [
29+
label = <money_put<br/><font color="#808080">&lt;CharT, OutputIt&gt;</font>>,
30+
tooltip = "std::money_put",
31+
fillcolor = lightgrey
32+
];
33+
34+
facet -> f1;
35+
}​​
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
21+
@SETTINGS@
22+
23+
base [
24+
label = "money_base",
25+
tooltip = "std::money_base",
26+
URL="cpp/locale/money_base"
27+
];
28+
f1 [
29+
label = "locale::facet",
30+
tooltip = "std::locale::facet",
31+
URL="cpp/locale/locale/facet"
32+
];
33+
facet [
34+
label = <moneypunct<br/><font color="#808080">&lt;CharT, International&gt;</font>>,
35+
tooltip = "std::moneypunct",
36+
fillcolor = lightgrey
37+
];
38+
39+
facet -> f1;
40+
facet -> base;
41+
}​​
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
21+
@SETTINGS@
22+
23+
f1 [
24+
label = "locale::facet",
25+
tooltip = "std::locale::facet",
26+
URL="cpp/locale/locale/facet"
27+
];
28+
facet [
29+
label = <num_get<br/><font color="#808080">&lt;CharT, InputIt&gt;</font>>,
30+
tooltip = "std::num_get",
31+
fillcolor = lightgrey
32+
];
33+
34+
facet -> f1;
35+
}​​
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
21+
@SETTINGS@
22+
23+
f1 [
24+
label = "locale::facet",
25+
tooltip = "std::locale::facet",
26+
URL="cpp/locale/locale/facet"
27+
];
28+
facet [
29+
label = <num_put<br/><font color="#808080">&lt;CharT, OutputIt&gt;</font>>,
30+
tooltip = "std::num_put",
31+
fillcolor = lightgrey
32+
];
33+
34+
facet -> f1;
35+
}​​

0 commit comments

Comments
 (0)