globally remove all trailing whitespace from ardour code base.
[ardour.git] / libs / pbd / pbd / stl_delete.h
1 /*
2     Copyright (C) 1998-99 Paul Barton-Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __libmisc_stl_delete_h__
21 #define __libmisc_stl_delete_h__
22
23 #include "pbd/libpbd_visibility.h"
24
25 /* To actually use any of these deletion functions, you need to
26    first include the revelant container type header.
27 */
28 #if defined(_CPP_VECTOR) || defined(_GLIBCXX_VECTOR) || defined(__SGI_STL_VECTOR) || defined(_LIBCPP_VECTOR)
29 template<class T> /*LIBPBD_API*/ void vector_delete (std::vector<T *> *vec)
30 {
31         typename std::vector<T *>::iterator i;
32         
33         for (i = vec->begin(); i != vec->end(); i++) {
34                 delete *i;
35         }
36         vec->clear ();
37 }
38 #endif // _CPP_VECTOR || _GLIBCXX_VECTOR || __SGI_STL_VECTOR || _LIBCPP_VECTOR
39
40 #if defined(_CPP_MAP) || defined(_GLIBCXX_MAP) || defined(__SGI_STL_MAP)
41 template<class K, class T> /*LIBPBD_API*/ void map_delete (std::map<K, T *> *m)
42 {
43         typename std::map<K, T *>::iterator i;
44
45         for (i = m->begin(); i != m->end(); i++) {
46                 delete (*i).second;
47         }
48         m->clear ();
49 }
50 #endif // _CPP_MAP || _GLIBCXX_MAP || __SGI_STL_MAP
51
52 #if defined(_CPP_LIST) || defined(_GLIBCXX_LIST) || defined(__SGI_STL_LIST)
53 template<class T> /*LIBPBD_API*/ void list_delete (std::list<T *> *l)
54 {
55         typename std::list<T *>::iterator i;
56
57         for (i = l->begin(); i != l->end(); i++) {
58                 delete (*i);
59         }
60
61         l->clear ();
62 }
63 #endif // _CPP_LIST || _GLIBCXX_LIST || __SGI_STL_LIST
64
65 #if defined(_CPP_SLIST) || defined(_GLIBCXX_SLIST) || defined(__SGI_STL_SLIST)
66 template<class T> /*LIBPBD_API*/ void slist_delete (std::slist<T *> *l)
67 {
68         typename std::slist<T *>::iterator i;
69
70         for (i = l->begin(); i != l->end(); i++) {
71                 delete (*i);
72         }
73
74         l->clear ();
75 }
76 #endif // _CPP_SLIST || _GLIBCXX_SLIST || __SGI_STL_SLIST
77
78 #if defined(_CPP_SET) || defined(_GLIBCXX_SET) || defined(__SGI_STL_SET)
79 template<class T> void /*LIBPBD_API*/ set_delete (std::set<T *> *sset)
80 {
81         typename std::set<T *>::iterator i;
82         
83         for (i = sset->begin(); i != sset->end(); i++) {
84                 delete *i;
85         }
86         sset->erase (sset->begin(), sset->end());
87 }
88 #endif // _CPP_SET || _GLIBCXX_SET || __SGI_STL_SET
89
90 #endif // __libmisc_stl_delete_h__