27 lines
656 B
Objective-C
27 lines
656 B
Objective-C
//
|
|
// TrueTime.h
|
|
// TrueTime
|
|
//
|
|
// Created by Michael Sanders on 7/9/16.
|
|
// Copyright © 2016 Instacart. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
#import "ntp_types.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
//! Project version number for TrueTime.
|
|
FOUNDATION_EXPORT double TrueTimeVersionNumber;
|
|
|
|
//! Project version string for TrueTime.
|
|
FOUNDATION_EXPORT const unsigned char TrueTimeVersionNumberString[];
|
|
|
|
//! Domain for TrueTime errors.
|
|
FOUNDATION_EXPORT NSString * const TrueTimeErrorDomain;
|
|
|
|
//! Notification sent whenever a TrueTimeClient's reference time is updated.
|
|
FOUNDATION_EXPORT NSString * const TrueTimeUpdatedNotification;
|
|
|
|
NS_ASSUME_NONNULL_END
|