// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef QUICHE_QUIC_CORE_SOCKET_FACTORY_H_ #define QUICHE_QUIC_CORE_SOCKET_FACTORY_H_ #include <memory> #include "quiche/quic/core/connecting_client_socket.h" #include "quiche/quic/core/quic_types.h" #include "quiche/quic/platform/api/quic_socket_address.h" #include "quiche/common/platform/api/quiche_export.h" namespace quic { // A factory to create objects of type Socket and derived interfaces. class QUICHE_EXPORT SocketFactory { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_SOCKET_FACTORY_H_