mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-25 04:05:53 +01:00
14 lines
213 B
C
14 lines
213 B
C
|
#ifndef BITMAPLINE_H
|
||
|
#define BITMAPLINE_H
|
||
|
|
||
|
class QPainter;
|
||
|
class QImage;
|
||
|
class QPolygonF;
|
||
|
|
||
|
namespace BitmapLine
|
||
|
{
|
||
|
void draw(QPainter *painter, const QPolygonF &line, const QImage &img);
|
||
|
}
|
||
|
|
||
|
#endif // BITMAPLINE_H
|