26 class VSG_DECLSPEC DepthSorted :
public Inherit<Node, DepthSorted>
30 DepthSorted(
const DepthSorted& rhs,
const CopyOp& copyop = {});
31 DepthSorted(int32_t in_binNumber,
const dsphere& in_bound,
ref_ptr<Node> in_child);
33 int32_t binNumber = 0;
41 void traverse(
Visitor& visitor)
override { child->accept(visitor); }
42 void traverse(
ConstVisitor& visitor)
const override { child->accept(visitor); }
43 void traverse(RecordTraversal& visitor)
const override { child->accept(visitor); }
45 void read(Input& input)
override;
46 void write(Output& output)
const override;
49 virtual ~DepthSorted();
int compare(const Object &rhs) const override
compare two objects, return -1 if this object is less than rhs, return 0 if it's equal,...