QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RSpatialIndexVisitor.h
Go to the documentation of this file.
1 #ifndef RSPATIALINDEXVISITOR_H
2 #define RSPATIALINDEXVISITOR_H
3 
4 #include <stdint.h>
5 
6 
15 public:
16  virtual ~RSpatialIndexVisitor() {}
20  virtual void visitData(
21  int id,
22  int pos,
23  double x1, double y1, double z1,
24  double x2, double y2, double z2
25  ) = 0;
26 
27  virtual void visitNode(
28  double x1, double y1, double z1,
29  double x2, double y2, double z2
30  ) = 0;
31 };
32 
34 
35 #endif