aboutsummaryrefslogtreecommitdiff
path: root/tool_src/QvLib/QvLists.h
diff options
context:
space:
mode:
Diffstat (limited to 'tool_src/QvLib/QvLists.h')
-rw-r--r--tool_src/QvLib/QvLists.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/tool_src/QvLib/QvLists.h b/tool_src/QvLib/QvLists.h
new file mode 100644
index 0000000..7b9ec15
--- /dev/null
+++ b/tool_src/QvLib/QvLists.h
@@ -0,0 +1,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_ */