session-ios/SignalServiceKit/src/Util/NSDate+OWS.h
2017-07-21 15:08:37 -04:00

15 lines
399 B
C
Executable file

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
// These NSTimeInterval constants provide simplified durations for readability.
#define kMinuteInterval 60
#define kHourInterval (60 * kMinuteInterval)
#define kDayInterval (24 * kHourInterval)
#define kWeekInterval (7 * kDayInterval)
#define kMonthInterval (30 * kDayInterval)
NS_ASSUME_NONNULL_END