COVISE Core
coConfigSchemaInfosList.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 COCONFIGSCHEMAINFOSLIST
9#define COCONFIGSCHEMAINFOSLIST
10
11#include <util/coTypes.h>
12#include <QList>
13#include <QString>
14#include <QVector>
15#include <QSet>
16
17namespace covise
18{
19
20class coConfigSchemaInfos;
21
22class CONFIGEXPORT coConfigSchemaInfosList : public QList<coConfigSchemaInfos *>
23{
24public:
27 {
28 while (!isEmpty())
29 {
30 delete takeFirst();
31 }
32 };
33};
34}
36#endif
#define CONFIGEXPORT
Definition: coExport.h:367
list of all chemical elements
Definition: coConfig.h:27
Definition: coConfigSchemaInfosList.h:23
coConfigSchemaInfosList()
Definition: coConfigSchemaInfosList.h:25
~coConfigSchemaInfosList()
Definition: coConfigSchemaInfosList.h:26