1
0
Fork 0
flightgear/utils/fgqcanvas/fgcanvaspaintcontext.h

19 lines
293 B
C
Raw Normal View History

#ifndef FGCANVASPAINTCONTEXT_H
#define FGCANVASPAINTCONTEXT_H
#include <QPainter>
class FGCanvasPaintContext
{
public:
FGCanvasPaintContext(QPainter* painter);
QPainter* painter() const
{ return _painter; }
private:
QPainter* _painter;
};
#endif // FGCANVASPAINTCONTEXT_H