-rw-r--r-- | microkde/kstaticdeleter.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/microkde/kstaticdeleter.h b/microkde/kstaticdeleter.h index dfd3929..d9c2b72 100644 --- a/microkde/kstaticdeleter.h +++ b/microkde/kstaticdeleter.h | |||
@@ -15,23 +15,24 @@ | |||
15 | * | 15 | * |
16 | * You should have received a copy of the GNU Library General Public License | 16 | * You should have received a copy of the GNU Library General Public License |
17 | * along with this library; see the file COPYING.LIB. If not, write to | 17 | * along with this library; see the file COPYING.LIB. If not, write to |
18 | * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | * Boston, MA 02111-1307, USA. | 19 | * Boston, MA 02111-1307, USA. |
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #ifndef _KSTATIC_DELETER_H_ | 23 | #ifndef _KSTATIC_DELETER_H_ |
24 | #define _KSTATIC_DELETER_H_ | 24 | #define _KSTATIC_DELETER_H_ |
25 | 25 | ||
26 | template<class type> | 26 | template<class type> |
27 | class KStaticDeleter | 27 | class KStaticDeleter |
28 | { | 28 | { |
29 | public: | 29 | public: |
30 | KStaticDeleter() {}; | 30 | KStaticDeleter() {}; |
31 | type *setObject( type *obj, bool isArray = false) { _mobj = obj;return obj; } | 31 | type *setObject( type *obj, bool isArray = false) { _mobj = obj;_isArray = isArray;return obj; } |
32 | virtual ~KStaticDeleter() {delete _mobj;}; | 32 | virtual ~KStaticDeleter() {if (_isArray) delete[] _mobj; else delete _mobj;}; |
33 | private: | 33 | private: |
34 | type* _mobj; | 34 | type* _mobj; |
35 | bool _isArray; | ||
35 | }; | 36 | }; |
36 | 37 | ||
37 | #endif | 38 | #endif |