mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
17 lines
311 B
Objective-C
17 lines
311 B
Objective-C
//
|
|
// RoundedRectangle.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 24-09-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface NSBezierPath (RoundedRectangle)
|
|
|
|
+ (NSBezierPath *)bezierPathWithRoundedRect: (NSRect) aRect cornerRadius: (double) cRadius;
|
|
|
|
@end
|