chromium/third_party/openscreen/src/util/simple_fraction.cc

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

#include "util/simple_fraction.h"

#include <cmath>
#include <limits>
#include <string>
#include <vector>

#include "absl/strings/str_split.h"
#include "util/osp_logging.h"
#include "util/string_parse.h"
#include "util/stringprintf.h"

namespace openscreen {

// static
ErrorOr<SimpleFraction> SimpleFraction::FromString(std::string_view value) {}

std::string SimpleFraction::ToString() const {}

}  // namespace openscreen