chromium/remoting/base/port_range.h

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

#ifndef REMOTING_BASE_PORT_RANGE_H_
#define REMOTING_BASE_PORT_RANGE_H_

#include <stdint.h>

#include <ostream>
#include <string>

namespace remoting {

// Wrapper for a value of UdpPortRange policy.
struct PortRange {};

std::ostream& operator<<(std::ostream& os, const PortRange& port_range);

}  // namespace remoting

#endif  // REMOTING_BASE_PORT_RANGE_H_