2013-04-05 17:16:33 -04:00
|
|
|
/*
|
2019-08-03 04:40:09 +02:00
|
|
|
* Copyright (C) 2013-2014 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2013-04-05 17:16:33 -04:00
|
|
|
|
|
|
|
|
#ifndef __canvas_canvas_fwd_h__
|
|
|
|
|
#define __canvas_canvas_fwd_h__
|
|
|
|
|
|
|
|
|
|
namespace ArdourCanvas {
|
2021-02-14 00:54:17 +01:00
|
|
|
class Arrow;
|
2013-04-05 17:16:33 -04:00
|
|
|
class Line;
|
2017-07-17 20:12:33 +02:00
|
|
|
class LineSet;
|
2013-04-05 17:16:33 -04:00
|
|
|
class Rectangle;
|
2017-07-17 20:12:33 +02:00
|
|
|
class Ruler;
|
2013-04-05 17:16:33 -04:00
|
|
|
class Polygon;
|
|
|
|
|
class PolyLine;
|
|
|
|
|
class GtkCanvas;
|
|
|
|
|
class GtkCanvasViewport;
|
|
|
|
|
class Text;
|
2013-04-11 22:54:12 -04:00
|
|
|
class Curve;
|
2017-07-17 20:12:33 +02:00
|
|
|
class ScrollGroup;
|
2013-04-05 17:16:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* __canvas_canvas_fwd_h__ */
|