blob: 1915c2fa966b043bd9f86b61abc49cbf8046488c [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);
void plot();
private:
ogdf::Graph m_graph;
};
#endif