Last change
on this file was
16577,
checked in by westram, 7 years ago
|
- full update from 'trunk' into 'alilink'
- adds:
- log:branches/aci@16170:16373,16376:16382,16385:16424,16427:16433
- log:branches/addtest@14319:14326,16193:16316
- log:branches/cleanup@14598:14603
- log:branches/color@14896:14915,14920:15053
- log:branches/consensus@14276:14424
- log:branches/cover@16213:16222
- log:branches/db@15618:15623,15628:15639
- log:branches/dbsave@14521:14555,14558:14576
- log:branches/errhandle@15275:15278
- log:branches/fix@14645:14667,14810:14812,15066:15093,15582:15586,15668:15672,15870:15875,15975:16020,16037:16042,16072:16076,16107:16111,16121:16126,16129:16149
- log:branches/fixres@15127:15175
- log:branches/fixwarn@14815:14832
- log:branches/flags@15098:15222,15225:15287
- log:branches/gde@14670:14785
- log:branches/group@15693:15702,15733:15965,16147:16163
- log:branches/homebrew@14911:14933
- log:branches/io@16436:16563
- log:branches/keys@15591:15690,15706:15730
- log:branches/macros@16484:16507
- log:branches/mladd@15377:15391,15394:15424
- log:branches/pars@15428:15458
- log:branches/random@15551:15558
- log:branches/refactor@15613:15664,15820:15851
- log:branches/remote@14624:14640
- log:branches/saiexport@16023:16118,16229:16233
- log:branches/sanitize@15434:15446
- log:branches/sativa@13071:13201,13203:13240,13242:13262,13264:13273,13275:13303,13305:13344,13346:16571
- log:branches/sync@15291:15339
- log:branches/textedit@16448:16468
- log:branches/tree@15347:15373
- log:branches/ui@14588:14621
- log:branches/unittest@15534:15578,16405:16411
- log:branches/warnings@15468:15483,15486:15512,15515:15519,15521:15528
- log:trunk@14417:16576
|
File size:
1.1 KB
|
Line | |
---|
1 | // =============================================================== // |
---|
2 | // // |
---|
3 | // File : AP_TreeSet.hxx // |
---|
4 | // Purpose : function for sets of tree nodes // |
---|
5 | // // |
---|
6 | // Coded by Ralf Westram (coder@reallysoft.de) in January 2017 // |
---|
7 | // http://www.arb-home.de/ // |
---|
8 | // // |
---|
9 | // =============================================================== // |
---|
10 | |
---|
11 | #ifndef AP_TREESET_HXX |
---|
12 | #define AP_TREESET_HXX |
---|
13 | |
---|
14 | #ifndef AP_TREE_HXX |
---|
15 | #include "AP_Tree.hxx" |
---|
16 | #endif |
---|
17 | #ifndef _GLIBCXX_SET |
---|
18 | #include <set> |
---|
19 | #endif |
---|
20 | |
---|
21 | typedef std::set<AP_tree*> AP_tree_set; |
---|
22 | typedef AP_tree_set::iterator AP_tree_set_iter; |
---|
23 | typedef AP_tree_set::const_iterator AP_tree_set_citer; |
---|
24 | |
---|
25 | void collect_enclosing_groups(AP_tree *node, AP_tree_set& groups); |
---|
26 | void collect_contained_groups(AP_tree *node, AP_tree_set& groups); |
---|
27 | |
---|
28 | #else |
---|
29 | #error AP_TreeSet.hxx included twice |
---|
30 | #endif // AP_TREESET_HXX |
---|
Note: See
TracBrowser
for help on using the repository browser.