blob: 0d98f7e5023437f232b38064c9b6b8cbed18cbbb [file] [log] [blame]
Zhenkai Zhuf474a0a2012-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);
14private:
15 ogdf::Graph m_graph;
16};
17#endif