Re: NSRect ObjC class defintinition?
Re: NSRect ObjC class defintinition?
- Subject: Re: NSRect ObjC class defintinition?
- From: "Mike Vannorsdel" <email@hidden>
- Date: Fri, 13 Jul 2001 21:50:42 -0600
NSRect is actually just a structure:
typedef struct _NSRect {
NSPoint origin;
NSSize size;
} NSRect;
You find this in Foundation's types and constants.
On Friday, July 13, 2001, at 09:32 PM, Andre John Mas wrote:
Hi,
Where can I find the definition of the NSRect class?