* Added BSD license to more .m files.
* Updated some copyright notices.
* Added some #imports to make the MYNetwork classes build without using the MYUtilities.pch prefix header.
2 // TimeIntervalFormatter.h
5 // Copyright 2008 Jens Alfke. All rights reserved.
8 #import <Cocoa/Cocoa.h>
11 @interface TimeIntervalFormatter : NSFormatter
13 BOOL _showsMinutes, _showsFractionalSeconds;
16 - (void) setShowsMinutes: (BOOL)showsMinutes;
17 - (void) setShowsFractionalSeconds: (BOOL)showsFractionalSeconds;
19 + (NSString*) formatTimeInterval: (NSTimeInterval)interval;