Synch with 20010921

This commit is contained in:
Don BURNS
2001-09-22 02:42:08 +00:00
parent d47b8f9c1f
commit 7ae58df42a
197 changed files with 7867 additions and 6189 deletions

View File

@@ -17,12 +17,9 @@ class SG_EXPORT Group : public Node
typedef std::vector<ref_ptr<Node> > ChildList;
Group();
virtual Object* clone() const { return new Group(); }
virtual bool isSameKindAs(const Object* obj) const { return dynamic_cast<const Group*>(obj)!=NULL; }
virtual const char* className() const { return "Group"; }
virtual void accept(NodeVisitor& nv) { nv.apply(*this); }
META_Node(Group);
virtual void traverse(NodeVisitor& nv);
/** Add Node to Group.