summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d7bebbe)
raw | patch | inline | side by side (parent: d7bebbe)
author | ishmal <ishmal@users.sourceforge.net> | |
Wed, 15 Feb 2006 16:37:10 +0000 (16:37 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Wed, 15 Feb 2006 16:37:10 +0000 (16:37 +0000) |
src/libavoid/shape.h | patch | blob | history |
diff --git a/src/libavoid/shape.h b/src/libavoid/shape.h
index 1960c22569558ff4e19b6b84d63e5ede0702750e..8989cf37532f11910ef0f6a66b9fb278c22f8248 100644 (file)
--- a/src/libavoid/shape.h
+++ b/src/libavoid/shape.h
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
+ *
*/
#ifndef AVOID_SHAPE_H
class ShapeRef
{
public:
- ShapeRef(Router *router, uint id, Polygn& poly);
+ ShapeRef(Router *router, unsigned int id, Polygn& poly);
~ShapeRef();
VertInf *firstVert(void);
VertInf *lastVert(void);
- uint id(void);
+ unsigned int id(void);
Polygn poly(void);
Router *router(void);
void boundingBox(BBox& bbox);
-
+
void makeActive(void);
void makeInactive(void);
void removeFromGraph(void);
-
+
private:
Router *_router;
- uint _id;
+ unsigned int _id;
Polygn _poly;
bool _active;
ShapeRefList::iterator _pos;