added PrintToStream method
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7147 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -48,8 +48,11 @@ class DrawData
|
|||||||
public:
|
public:
|
||||||
DrawData(void);
|
DrawData(void);
|
||||||
DrawData(const DrawData &data);
|
DrawData(const DrawData &data);
|
||||||
~DrawData(void);
|
virtual ~DrawData(void);
|
||||||
DrawData& operator=(const DrawData &from);
|
DrawData& operator=(const DrawData &from);
|
||||||
|
// uncomment when needed. Also implement it! :-)
|
||||||
|
// virtual void PrintToStream() const;
|
||||||
|
|
||||||
BPoint penlocation;
|
BPoint penlocation;
|
||||||
|
|
||||||
RGBColor highcolor,
|
RGBColor highcolor,
|
||||||
@@ -72,7 +75,6 @@ public:
|
|||||||
BRegion* clippReg;
|
BRegion* clippReg;
|
||||||
|
|
||||||
escapement_delta edelta;
|
escapement_delta edelta;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class LayerData : public DrawData
|
class LayerData : public DrawData
|
||||||
@@ -81,8 +83,10 @@ public:
|
|||||||
LayerData(void);
|
LayerData(void);
|
||||||
LayerData(const Layer *layer);
|
LayerData(const Layer *layer);
|
||||||
LayerData(const LayerData &data);
|
LayerData(const LayerData &data);
|
||||||
|
virtual ~LayerData(void);
|
||||||
LayerData &operator=(const LayerData &from);
|
LayerData &operator=(const LayerData &from);
|
||||||
~LayerData(void);
|
|
||||||
|
virtual void PrintToStream() const;
|
||||||
|
|
||||||
BPoint coordOrigin;
|
BPoint coordOrigin;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user