mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
19 lines
345 B
C++
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
|