aboutsummaryrefslogtreecommitdiff
path: root/tool_src/QvLib/QvSwitch.h
blob: 47998cc15dc771f9f56c56bc07b91cee1d054bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef  _QV_SWITCH_
#define  _QV_SWITCH_

#include <QvSFLong.h>
#include <QvGroup.h>

#define QV_SWITCH_NONE		(-1)	/* Don't traverse any children	*/
#define QV_SWITCH_ALL		(-3)	/* Traverse all children	*/

class QvSwitch : public QvGroup {

    QV_NODE_HEADER(QvSwitch);

  public:
    // Fields
    QvSFLong		whichChild;	// Child to traverse
};

#endif /* _QV_SWITCH_ */