// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "platform/base/trace_logging_types.h" #include <cstdlib> #include <limits> namespace openscreen { std::string TraceIdHierarchy::ToString() const { … } std::ostream& operator<<(std::ostream& out, const TraceIdHierarchy& ids) { … } bool operator==(const TraceIdHierarchy& lhs, const TraceIdHierarchy& rhs) { … } bool operator!=(const TraceIdHierarchy& lhs, const TraceIdHierarchy& rhs) { … } const char* ToString(TraceCategory category) { … } } // namespace openscreen