BShape: Style fixes for docs

This commit is contained in:
John Scipione
2014-07-14 19:02:44 -04:00
parent 22da33b202
commit db1ef05aef
3 changed files with 78 additions and 52 deletions
+8 -6
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007, Haiku, Inc. All rights reserved.
* Copyright 2002-2010 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _SHAPE_H
@@ -8,6 +8,7 @@
#include <Archivable.h>
class BPoint;
class BRect;
class BShape;
@@ -25,9 +26,9 @@ public:
virtual status_t IterateMoveTo(BPoint* point);
virtual status_t IterateLineTo(int32 lineCount,
BPoint* linePts);
BPoint* linePoints);
virtual status_t IterateBezierTo(int32 bezierCount,
BPoint* bezierPts);
BPoint* bezierPoints);
virtual status_t IterateClose();
virtual status_t IterateArcTo(float& rx, float& ry,
@@ -81,7 +82,7 @@ public:
private:
// FBC padding
virtual status_t Perform(perform_code code, void* data);
virtual status_t Perform(perform_code code, void* data);
virtual void _ReservedShape1();
virtual void _ReservedShape2();
@@ -96,10 +97,10 @@ private:
friend class BPrivate::ServerLink;
void GetData(int32* opCount, int32* ptCount,
uint32** opList, BPoint** ptList);
uint32** opList, BPoint** pointsList);
void SetData(int32 opCount, int32 ptCount,
const uint32* opList,
const BPoint* ptList);
const BPoint* pointsList);
void InitData();
bool AllocatePts(int32 count);
bool AllocateOps(int32 count);
@@ -112,4 +113,5 @@ private:
uint32 reserved[4];
};
#endif // _SHAPE_H