Zhenkai Zhu | f474a0a | 2012-05-30 15:06:29 -0700 | [diff] [blame] | 1 | #ifndef DIGESTTREESCENE_H |
2 | #define DIGESTTREESCENE_H | ||||
3 | |||||
4 | #include <QtGui/QGraphicsScene> | ||||
5 | #include "ogdf/basic/GraphAttributes.h" | ||||
6 | #include "ogdf/basic/Graph.h" | ||||
7 | |||||
8 | class DigestTreeScene : public QGraphicsScene | ||||
9 | { | ||||
10 | Q_OBJECT | ||||
11 | |||||
12 | public: | ||||
13 | DigestTreeScene(QWidget *parent = 0); | ||||
Zhenkai Zhu | 6fcdee4 | 2012-05-30 17:02:49 -0700 | [diff] [blame^] | 14 | void plot(); |
Zhenkai Zhu | f474a0a | 2012-05-30 15:06:29 -0700 | [diff] [blame] | 15 | private: |
16 | ogdf::Graph m_graph; | ||||
17 | }; | ||||
18 | #endif |