// Copyright (c) 2019 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_TOOLS_QUIC_SERVER_FACTORY_H_ #define QUICHE_QUIC_TOOLS_QUIC_SERVER_FACTORY_H_ #include "quiche/quic/tools/quic_toy_server.h" namespace quic { // Factory creating QuicServer instances. class QuicServerFactory : public QuicToyServer::ServerFactory { … }; } // namespace quic #endif // QUICHE_QUIC_TOOLS_QUIC_SERVER_FACTORY_H_