decouple midi region note range and height from midi streamview.
[ardour.git] / libs / canvas / canvas / root_group.h
index 74cfbac29f3e8494e9f7d1e42c767cffea44d3d0..1d2c516b8b11bf875abc07af213ba40128f0588f 100644 (file)
 #ifndef __CANVAS_ROOT_GROUP_H__
 #define __CANVAS_ROOT_GROUP_H__
 
-#include "group.h"
+#include "canvas/visibility.h"
+#include "canvas/container.h"
 
 namespace ArdourCanvas {
 
-class RootGroup : public Group
+class LIBCANVAS_API Root : public Container
 {
 private:
        friend class Canvas;
-       
-       RootGroup (Canvas *);
+
+       Root (Canvas *);
 
        void compute_bounding_box () const;
-       void child_changed ();
 };
 
 }