mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
18 lines
319 B
C++
18 lines
319 B
C++
#ifndef BITMAPLINE_H
|
|
#define BITMAPLINE_H
|
|
|
|
#include <QVector>
|
|
|
|
class QPainter;
|
|
class QImage;
|
|
class QPolygonF;
|
|
|
|
namespace BitmapLine
|
|
{
|
|
void draw(QPainter *painter, const QPolygonF &line, const QImage &img);
|
|
void draw(QPainter *painter, const QVector<QPolygonF> &lines,
|
|
const QImage &img);
|
|
}
|
|
|
|
#endif // BITMAPLINE_H
|