blob: 7b9ec15d074c225a0aa6b50c17488803e523ab9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _QV_LISTS_
#define _QV_LISTS_
#include <QvPList.h>
class QvField;
class QvNode;
class QvNodeList : public QvPList {
public:
QvNodeList();
~QvNodeList() { truncate(0); }
QvNode * operator [](int i) const
{ return ( (QvNode *) ( (*(const QvPList *) this) [i] ) ); }
};
#endif /* _QV_LISTS_ */
|