summaryrefslogtreecommitdiff
path: root/libs/canvas/canvas/root_group.h
blob: bab6d9448514c025f833a43e289d85148b94e6fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __CANVAS_ROOT_GROUP_H__
#define __CANVAS_ROOT_GROUP_H__

#include "group.h"

namespace ArdourCanvas {

class RootGroup : public Group
{
private:
	friend class Canvas;
	
	RootGroup (Canvas *);

	void compute_bounding_box () const;
	void child_changed ();
};

}

#endif