blob: 0cb092a5456f5b4fcbe07200fe164ba6666b1d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _QV_GROUP_
#define _QV_GROUP_
class QvChildList;
#include <QvSubNode.h>
class QvGroup : public QvNode {
QV_NODE_HEADER(QvGroup);
public:
QvNode * getChild(int index) const;
int getNumChildren() const;
virtual QvChildList *getChildren() const;
virtual QvBool readInstance(QvInput *in);
virtual QvBool readChildren(QvInput *in);
};
#endif /* _QV_GROUP_ */
|