mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
19 lines
313 B
C++
19 lines
313 B
C++
|
|
#ifndef TreeRingView_h
|
|
#define TreeRingView_h
|
|
|
|
#include "QVTKGraphicsItem.h"
|
|
class vtkTreeRingView;
|
|
|
|
class TreeRingViewItem : public QVTKGraphicsItem
|
|
{
|
|
public:
|
|
TreeRingViewItem(QGLContext* ctx, QGraphicsItem* p=0);
|
|
~TreeRingViewItem();
|
|
|
|
protected:
|
|
vtkSmartPointer<vtkTreeRingView> TreeRingView;
|
|
};
|
|
|
|
#endif
|