timestamp.h 239 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef AIRMAP_TIMESTAMP_H_
#define AIRMAP_TIMESTAMP_H_

#include <airmap/date_time.h>

namespace airmap {

/// Timestamp models a specific point in time.
using Timestamp = DateTime;

}  // namespace airmap

#endif  // AIRMAP_TIMESTAMP_H_