From 49488762da466f2515d55e0547a8e15aa7560ebe Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Thu, 24 Mar 2011 21:00:24 +0000 Subject: [Author: thomasvl] Wrap the header so it compiles right if included in a C++ file. R=dmaclach DELTA=6 (6 added, 0 deleted, 0 changed) --- iPhone/GTMRoundedRectPath.h | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'iPhone') diff --git a/iPhone/GTMRoundedRectPath.h b/iPhone/GTMRoundedRectPath.h index 2b20fec..88bf4cc 100644 --- a/iPhone/GTMRoundedRectPath.h +++ b/iPhone/GTMRoundedRectPath.h @@ -18,18 +18,22 @@ #import -// Inscribe a round rectangle inside of rectangle |rect| with a corner radius +#include "GTMDefines.h" + +GTM_EXTERN_C_BEGIN + +// Inscribe a round rectangle inside of rectangle |rect| with a corner radius // of |radius| // // Args: // rect: outer rectangle to inscribe into // radius: radius of the corners. |radius| is clamped internally // to be no larger than the smaller of half |rect|'s width or height -void GTMCGContextAddRoundRect(CGContextRef context, - CGRect rect, +void GTMCGContextAddRoundRect(CGContextRef context, + CGRect rect, CGFloat radius); -// Adds a path which is a round rectangle inscribed inside of rectangle |rect| +// Adds a path which is a round rectangle inscribed inside of rectangle |rect| // with a corner radius of |radius| // // Args: @@ -38,11 +42,13 @@ void GTMCGContextAddRoundRect(CGContextRef context, // rect: outer rectangle to inscribe into // radius: radius of the corners. |radius| is clamped internally // to be no larger than the smaller of half |rect|'s width or height -void GTMCGPathAddRoundRect(CGMutablePathRef path, - const CGAffineTransform *m, - CGRect rect, +void GTMCGPathAddRoundRect(CGMutablePathRef path, + const CGAffineTransform *m, + CGRect rect, CGFloat radius); // Allocates a new rounded corner rectangle path. // DEPRECATED. Please use one of the above. CGPathRef GTMCreateRoundedRectPath(CGRect rect, CGFloat radius); + +GTM_EXTERN_C_END -- cgit v1.2.3