qvgroup.h

来自「Windows上的MUD客户端程序」· C头文件 代码 · 共 20 行

H
20
字号
#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_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?