blob: 1915c2fa966b043bd9f86b61abc49cbf8046488c [file] [log] [blame]
Zhenkai Zhuc5c79b62012-05-30 15:06:29 -07001#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
8class DigestTreeScene : public QGraphicsScene
9{
10 Q_OBJECT
11
12public:
13 DigestTreeScene(QWidget *parent = 0);
Zhenkai Zhueeff9662012-05-30 17:02:49 -070014 void plot();
Zhenkai Zhuc5c79b62012-05-30 15:06:29 -070015private:
16 ogdf::Graph m_graph;
17};
18#endif