source: trunk/src/qt3support/tools/q3ptrvector.h@ 104

Last change on this file since 104 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 4.6 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the Qt3Support module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef Q3PTRVECTOR_H
43#define Q3PTRVECTOR_H
44
45#include <Qt3Support/q3gvector.h>
46
47QT_BEGIN_HEADER
48
49QT_BEGIN_NAMESPACE
50
51QT_MODULE(Qt3SupportLight)
52
53template<class type>
54class Q3PtrVector
55#ifdef qdoc
56 : public Q3PtrCollection
57#else
58 : public Q3GVector
59#endif
60{
61public:
62 Q3PtrVector() { }
63 Q3PtrVector( uint size ) : Q3GVector(size) { }
64 Q3PtrVector( const Q3PtrVector<type> &v ) : Q3GVector( v ) { }
65 ~Q3PtrVector() { clear(); }
66 Q3PtrVector<type> &operator=(const Q3PtrVector<type> &v)
67 { return (Q3PtrVector<type>&)Q3GVector::operator=(v); }
68 bool operator==( const Q3PtrVector<type> &v ) const { return Q3GVector::operator==(v); }
69 type **data() const { return (type **)Q3GVector::data(); }
70 uint size() const { return Q3GVector::size(); }
71 uint count() const { return Q3GVector::count(); }
72 bool isEmpty() const { return Q3GVector::count() == 0; }
73 bool isNull() const { return Q3GVector::size() == 0; }
74 bool resize( uint size ) { return Q3GVector::resize(size); }
75 bool insert( uint i, const type *d){ return Q3GVector::insert(i,(Item)d); }
76 bool remove( uint i ) { return Q3GVector::remove(i); }
77 type *take( uint i ) { return (type *)Q3GVector::take(i); }
78 void clear() { Q3GVector::clear(); }
79 bool fill( const type *d, int size=-1 )
80 { return Q3GVector::fill((Item)d,size);}
81 void sort() { Q3GVector::sort(); }
82 int bsearch( const type *d ) const{ return Q3GVector::bsearch((Item)d); }
83 int findRef( const type *d, uint i=0 ) const
84 { return Q3GVector::findRef((Item)d,i);}
85 int find( const type *d, uint i= 0 ) const
86 { return Q3GVector::find((Item)d,i); }
87 uint containsRef( const type *d ) const
88 { return Q3GVector::containsRef((Item)d); }
89 uint contains( const type *d ) const
90 { return Q3GVector::contains((Item)d); }
91 type *operator[]( int i ) const { return (type *)Q3GVector::at(i); }
92 type *at( uint i ) const { return (type *)Q3GVector::at(i); }
93 void toList( Q3GList *list ) const { Q3GVector::toList(list); }
94
95#ifdef qdoc
96protected:
97 virtual int compareItems( Q3PtrCollection::Item d1, Q3PtrCollection::Item d2 );
98 virtual QDataStream& read( QDataStream &s, Q3PtrCollection::Item &d );
99 virtual QDataStream& write( QDataStream &s, Q3PtrCollection::Item d ) const;
100#endif
101
102private:
103 void deleteItem( Item d );
104};
105
106#if !defined(Q_BROKEN_TEMPLATE_SPECIALIZATION)
107template<> inline void Q3PtrVector<void>::deleteItem( Q3PtrCollection::Item )
108{
109}
110#endif
111
112template<class type> inline void Q3PtrVector<type>::deleteItem( Q3PtrCollection::Item d )
113{
114 if ( del_item ) delete (type *)d;
115}
116
117QT_END_NAMESPACE
118
119QT_END_HEADER
120
121#endif // Q3PTRVECTOR_H
Note: See TracBrowser for help on using the repository browser.