git-svn-id: svn://ultimatepp.org/upp/trunk@331 f0d560ea-af0d-0410-9eb7-867de7ffcac7

This commit is contained in:
cxl 2008-08-15 10:09:16 +00:00
parent f49ae74c89
commit e1ad1b14a1
166 changed files with 66362 additions and 0 deletions

29
uppdev/aggdraw/aggdraw.h Normal file
View file

@ -0,0 +1,29 @@
#ifndef _PinA_aggdraw_h_
#define _PinA_aggdraw_h_
#include <Draw/Draw.h>
namespace Upp
{
class AggDraw : public Draw
{
public:
AggDraw(int cx, int cy);
AggDraw(Size sz);
~AggDraw();
virtual void BeginOp();
virtual void EndOp();
virtual void DrawLineOp(int x1, int y1, int x2, int y2, int width, Color color);
operator Image();
private:
struct AggDrawPrivate;
AggDrawPrivate * data;
};
}
#endif