COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
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 
17 namespace covise
18 {
19 
20 class coConfigSchemaInfos;
21 
22 class CONFIGEXPORT coConfigSchemaInfosList : public QList<coConfigSchemaInfos *>
23 {
24 public:
27  {
28  while (!isEmpty())
29  {
30  delete takeFirst();
31  }
32  };
33 };
34 }
36 #endif
Definition: coConfigSchemaInfosList.h:22
~coConfigSchemaInfosList()
Definition: coConfigSchemaInfosList.h:26
#define CONFIGEXPORT
Definition: coExport.h:355
coConfigSchemaInfosList()
Definition: coConfigSchemaInfosList.h:25