Testing SyntaxHighlighter Plus by Fred Wu
void GrilledCheeseMac::DrawRectangle
(
int x,
int y,
int width,
int height
)
{
// Create a rect from our coordinates.
NSRect rect = NSMakeRect(
(CGFloat)x,
(CGFloat)y,
(CGFloat)width,
(CGFloat)height);
NSFrameRect(rect);
} // DrawRectangle

