Main Page | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members

CascadePoint.h

Go to the documentation of this file.
00001 //
00002 // CascadePoint.h - header file for class CascadePoint
00003 //
00004 // Copyright (c) 2003, Roku, LLC.  All rights reserved.
00005 //
00008 
00009 #ifndef _ROKU_INCLUDE_CASCADE_GRAPHICS_CASCADEPOINT_H
00010 #define _ROKU_INCLUDE_CASCADE_GRAPHICS_CASCADEPOINT_H
00011 
00012 #include <cascade/CascadeObject.h>
00013 
00027 class CascadePoint : public CascadeObject
00028 {
00029 public:
00030         CascadePoint()                              { x = y = 0;                 }
00034     CascadePoint(s32 xx, s32 yy)                { x = xx; y = yy;            }
00040     CascadePoint(const CascadePoint & point)    { x = point.x;  y = point.y; }
00045 public:
00046     s32 x;
00050     s32 y;     
00054 };
00055 
00056 #endif // #ifndef _ROKU_INCLUDE_CASCADE_GRAPHICS_CASCADEPOINT_H
00057 
00059 //  LOG
00061 //  20-Jan-03   dwoodward       created
00062 //  20-Jan-03   dwoodward       1.0 STATUS: 100% complete
00063 //  05-May-03   dwoodward   doxygenated

Generated on Sun Jul 24 14:27:17 2005 for Cascade Library by  doxygen 1.4.1