chromium/third_party/openscreen/src/cast/streaming/impl/ntp_time.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cast/streaming/impl/ntp_time.h"

#include "util/osp_logging.h"

namespace openscreen::cast {

namespace {

// The number of seconds between 1 January 1900 and 1 January 1970.
constexpr NtpSeconds kTimeBetweenNtpEpochAndUnixEpoch{};

}  // namespace

NtpTimeConverter::NtpTimeConverter(Clock::time_point now,
                                   std::chrono::seconds since_unix_epoch)
    :{}

NtpTimeConverter::~NtpTimeConverter() = default;

NtpTimestamp NtpTimeConverter::ToNtpTimestamp(
    Clock::time_point time_point) const {}

Clock::time_point NtpTimeConverter::ToLocalTime(NtpTimestamp timestamp) const {}

}  // namespace openscreen::cast