DateUtils.h
author snej@snej.local
Sun Apr 12 22:00:36 2009 -0700 (2009-04-12)
changeset 25 47d10ac2d04e
parent 4 64823cdde6a5
permissions -rw-r--r--
Fixed some incorrect CSSM error code strings. Removed a log call from MYError.
     1 //
     2 //  DateUtils.h
     3 //  MYUtilities
     4 //
     5 //  Created by Jens Alfke on 3/25/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import <Cocoa/Cocoa.h>
    10 
    11 #ifdef __cplusplus
    12 extern "C" {
    13 #endif
    14     
    15     
    16     /** Absolute time (since 'reference date') to NSDate. 0.0 -> nil. */
    17     NSDate* $date( CFAbsoluteTime );
    18     
    19     /** NSDate to absolute time (since 'reference date'). nil -> 0.0 */
    20     CFAbsoluteTime $time( NSDate* );
    21 
    22     
    23     NSTimeInterval TimeIntervalSinceBoot(void);
    24 
    25 
    26 #ifdef __cplusplus
    27 }
    28 #endif