author | Jens Alfke <jens@mooseyard.com> |
Fri Apr 18 09:25:10 2008 -0700 (2008-04-18) | |
changeset 6 | 2d492d8c2053 |
parent 0 | d84d25d6cdbb |
permissions | -rw-r--r-- |
1 //
2 // TimeIntervalFormatter.h
3 // MYUtilities
4 //
5 // Copyright 2008 Jens Alfke. All rights reserved.
6 //
8 #import <Cocoa/Cocoa.h>
11 @interface TimeIntervalFormatter : NSFormatter
12 {
13 BOOL _showsMinutes, _showsFractionalSeconds;
14 }
16 - (void) setShowsMinutes: (BOOL)showsMinutes;
17 - (void) setShowsFractionalSeconds: (BOOL)showsFractionalSeconds;
19 + (NSString*) formatTimeInterval: (NSTimeInterval)interval;
21 @end