Files
ThirdParty-6/ParaView-5.0.1/VTK/Examples/GUI/Qt/GraphicsView/GraphLayoutViewItem.h

19 lines
345 B
C++

#ifndef GraphLayoutViewItem_h
#define GraphLayoutViewItem_h
#include "QVTKGraphicsItem.h"
class vtkGraphLayoutView;
class GraphLayoutViewItem : public QVTKGraphicsItem
{
public:
GraphLayoutViewItem(QGLContext* ctx, QGraphicsItem* p=0);
~GraphLayoutViewItem();
protected:
vtkSmartPointer<vtkGraphLayoutView> GraphLayoutView;
};
#endif