COVISE Core
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 <list>
12#include <QString>
13#include <QStringList>
14
15#include "coConfigConstants.h"
16#include <util/coTypes.h>
17
18namespace covise
19{
20
21class coConfigEntry;
22
23class CONFIGEXPORT coConfigEntryPtrList : public std::list<coConfigEntry *>
24{
25
26public:
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
36protected:
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:367
list of all chemical elements
Definition: coConfig.h:27
Definition: coConfigEntryPtrList.h:24