COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coConfigEntryPtrList.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef COCONFIGENTRYPTRLIST_H
9 #define COCONFIGENTRYPTRLIST_H
10 
11 #include <QLinkedList>
12 #include <QString>
13 #include <QStringList>
14 
15 #include "coConfigConstants.h"
16 #include <util/coTypes.h>
17 
18 namespace covise
19 {
20 
21 class coConfigEntry;
22 
23 class CONFIGEXPORT coConfigEntryPtrList : public QLinkedList<coConfigEntry *>
24 {
25 
26 public:
29 
30  // int find(const QString & name);
31  // int findNext(const QString & name);
32  //
33  // int find(const char * name);
34  // int findNext(const char * name);
35 
36 protected:
37  // Who needs this?
38  // virtual int compareItems(Q3PtrCollection::Item item1,
39  // Q3PtrCollection::Item item2);
40 };
41 }
42 #include "coConfigEntry.h"
43 #endif
#define CONFIGEXPORT
Definition: coExport.h:355
Definition: coConfigEntryPtrList.h:23