e870e51876690df8ed95c60e8966ebfe943e1bfe
[ardour.git] / libs / canvas / canvas / poly_line.h
1 #ifndef __CANVAS_POLY_LINE_H__
2 #define __CANVAS_POLY_LINE_H__
3
4 #include "canvas/poly_item.h"
5 #include "canvas/outline.h"
6
7 namespace ArdourCanvas {
8
9 class PolyLine : public PolyItem
10 {
11 public:
12         PolyLine (Group *);
13
14         void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
15         XMLNode* get_state () const;
16         void set_state (XMLNode const *);
17 };
18         
19 }
20
21 #endif