1QObjectList(3qt) QObjectList(3qt)
2
3
4
6 QObjectList - QPtrList of QObjects
7
9 #include <qobjectlist.h>
10
11 Inherits QPtrList<QObject>.
12
13 Public Members
14 QObjectList ()
15 QObjectList ( const QObjectList & list )
16 ~QObjectList ()
17 QObjectList & operator= ( const QObjectList & list )
18
20 The QObjectList class is a QPtrList of QObjects.
21
22 A QObjectList is a QPtrList<QObject>. The list can be traversed using
23 inherited functions, e.g. getFirst(), next(), etc., or using a
24 QObjectListIterator iterator.
25
26 See QObject::queryList() for an example of use.
27
28 See also QObjectListIterator, QObject, Collection Classes, and Non-GUI
29 Classes.
30
33 Constructs an empty QObject list.
34
36 Constructs a copy of list.
37
38 Each item in list is appended to this list. Only the pointers are
39 copied (shallow copy).
40
42 Removes all the object pointers from the list and destroys the list.
43
44 All list iterators that access this list will be reset.
45
46 See also setAutoDelete().
47
49 Assigns list to this list and returns a reference to this list.
50
51 This list is first cleared and then each item in list is appended to
52 this list. Only the pointers are copied (shallow copy) unless newItem()
53 has been reimplemented().
54
55
57 http://doc.trolltech.com/qobjectlist.html
58 http://www.trolltech.com/faq/tech.html
59
61 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
62 license file included in the distribution for a complete license
63 statement.
64
66 Generated automatically from the source code.
67
69 If you find a bug in Qt, please report it as described in
70 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
71 help you. Thank you.
72
73 The definitive Qt documentation is provided in HTML format; it is
74 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
75 web browser. This man page is provided as a convenience for those users
76 who prefer man pages, although this format is not officially supported
77 by Trolltech.
78
79 If you find errors in this manual page, please report them to qt-
80 bugs@trolltech.com. Please include the name of the manual page
81 (qobjectlist.3qt) and the Qt version (3.3.8).
82
83
84
85Trolltech AS 2 February 2007 QObjectList(3qt)