// Copyright (c) FIRST and other WPILib contributors. // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. #pragma once #include #include #include #include #include #include namespace nt { namespace net3 { class Message3; } // namespace net3 namespace net { struct ClientMessage; struct ServerMessage; } // namespace net class Event; class Handle; class PubSubOptionsImpl; class Value; void PrintTo(const Event& event, std::ostream* os); void PrintTo(const Handle& handle, std::ostream* os); void PrintTo(const net3::Message3& msg, std::ostream* os); void PrintTo(const net::ClientMessage& msg, std::ostream* os); void PrintTo(const net::ServerMessage& msg, std::ostream* os); void PrintTo(const Value& value, std::ostream* os); void PrintTo(const PubSubOptionsImpl& options, std::ostream* os); } // namespace nt