diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2007-12-28 06:22:38 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2007-12-28 06:22:38 (GMT) |
commit | 0ec165e85b313588d43dbdc2450da9838c4c528f (patch) | |
tree | aee798a6f8f108908e3e6932bef11b8eb564aa2a /src/FbTk | |
parent | 32eb2a148ea7a257a058658af36e9f8c801a524a (diff) | |
download | fluxbox-0ec165e85b313588d43dbdc2450da9838c4c528f.zip fluxbox-0ec165e85b313588d43dbdc2450da9838c4c528f.tar.bz2 |
move STLUtil to FbTk
Diffstat (limited to 'src/FbTk')
-rw-r--r-- | src/FbTk/Makefile.am | 2 | ||||
-rw-r--r-- | src/FbTk/STLUtil.hh | 55 |
2 files changed, 56 insertions, 1 deletions
diff --git a/src/FbTk/Makefile.am b/src/FbTk/Makefile.am index 5f1c246..f5970fd 100644 --- a/src/FbTk/Makefile.am +++ b/src/FbTk/Makefile.am | |||
@@ -57,7 +57,7 @@ libFbTk_a_SOURCES = App.hh App.cc Color.cc Color.hh Command.hh \ | |||
57 | MenuSeparator.hh MenuSeparator.cc \ | 57 | MenuSeparator.hh MenuSeparator.cc \ |
58 | stringstream.hh \ | 58 | stringstream.hh \ |
59 | TypeAhead.hh SearchResult.hh SearchResult.cc ITypeAheadable.hh \ | 59 | TypeAhead.hh SearchResult.hh SearchResult.cc ITypeAheadable.hh \ |
60 | Select2nd.hh \ | 60 | Select2nd.hh STLUtil.hh \ |
61 | CachedPixmap.hh CachedPixmap.cc \ | 61 | CachedPixmap.hh CachedPixmap.cc \ |
62 | ${xpm_SOURCE} \ | 62 | ${xpm_SOURCE} \ |
63 | ${xft_SOURCE} \ | 63 | ${xft_SOURCE} \ |
diff --git a/src/FbTk/STLUtil.hh b/src/FbTk/STLUtil.hh new file mode 100644 index 0000000..ec783d9 --- /dev/null +++ b/src/FbTk/STLUtil.hh | |||
@@ -0,0 +1,55 @@ | |||
1 | // STLUtil.cc for FbTk | ||
2 | // Copyright (c) 2006 Fluxbox Team (fluxgen at fluxbox dot org) | ||
3 | // | ||
4 | // Permission is hereby granted, free of charge, to any person obtaining a | ||
5 | // copy of this software and associated documentation files (the "Software"), | ||
6 | // to deal in the Software without restriction, including without limitation | ||
7 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
8 | // and/or sell copies of the Software, and to permit persons to whom the | ||
9 | // Software is furnished to do so, subject to the following conditions: | ||
10 | // | ||
11 | // The above copyright notice and this permission notice shall be included in | ||
12 | // all copies or substantial portions of the Software. | ||
13 | // | ||
14 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
15 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
16 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
17 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
18 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
20 | // DEALINGS IN THE SOFTWARE. | ||
21 | |||
22 | #ifndef FBTK_STLUTIL_HH | ||
23 | #define FBTK_STLUTIL_HH | ||
24 | |||
25 | /// contains useful utilities for STL | ||
26 | namespace FbTk { | ||
27 | namespace STLUtil { | ||
28 | |||
29 | /// calls delete on each item in the container and then clears the container | ||
30 | template <typename A> | ||
31 | void destroyAndClear(A &a) { | ||
32 | typedef typename A::iterator iterator; | ||
33 | iterator it = a.begin(); | ||
34 | iterator it_end = a.end(); | ||
35 | for (; it != it_end; ++it) | ||
36 | delete (*it); | ||
37 | |||
38 | a.clear(); | ||
39 | } | ||
40 | |||
41 | /// calls delete on each item value in the map and then clears the map | ||
42 | template <typename A> | ||
43 | void destroyAndClearSecond(A &a) { | ||
44 | typedef typename A::iterator iterator; | ||
45 | iterator it = a.begin(); | ||
46 | iterator it_end = a.end(); | ||
47 | for (; it != it_end; ++it) | ||
48 | delete it->second; | ||
49 | a.clear(); | ||
50 | } | ||
51 | |||
52 | }; // end namespace STLUtil | ||
53 | }; // end namespace FbTk | ||
54 | |||
55 | #endif // STLUTIL_Hh | ||