diff grapher.h @ 44:bed7ab59f62e

* A snatched bit of work on graph layout
author Chris Cannam
date Tue, 09 Nov 2010 17:51:12 +0000
parents
children 4286836bb3c9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/grapher.h	Tue Nov 09 17:51:12 2010 +0000
@@ -0,0 +1,15 @@
+#ifndef GRAPHER_H
+#define GRAPHER_H
+
+#include "changeset.h"
+#include "changesetitem.h"
+
+typedef QMap<Changeset *, ChangesetItem *> ChangesetItemMap;
+
+class Grapher
+{
+public:
+    void layout(Changesets csets, ChangesetItemMap items);
+};
+
+#endif