mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 00:56:33 +01:00
21 lines
364 B
C++
21 lines
364 B
C++
#ifndef __CANVAS_POLY_LINE_H__
|
|
#define __CANVAS_POLY_LINE_H__
|
|
|
|
#include "canvas/poly_item.h"
|
|
#include "canvas/outline.h"
|
|
|
|
namespace ArdourCanvas {
|
|
|
|
class PolyLine : public PolyItem
|
|
{
|
|
public:
|
|
PolyLine (Group *);
|
|
|
|
void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
|
|
XMLNode* get_state () const;
|
|
void set_state (XMLNode const *);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|