blob: 0d98f7e5023437f232b38064c9b6b8cbed18cbbb [file] [log] [blame]
#ifndef DIGESTTREESCENE_H
#define DIGESTTREESCENE_H
#include <QtGui/QGraphicsScene>
#include "ogdf/basic/GraphAttributes.h"
#include "ogdf/basic/Graph.h"
class DigestTreeScene : public QGraphicsScene
{
Q_OBJECT
public:
DigestTreeScene(QWidget *parent = 0);
private:
ogdf::Graph m_graph;
};
#endif