chromium/net/third_party/quiche/src/quiche/quic/tools/quic_epoll_client_factory.h

// 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_EPOLL_CLIENT_FACTORY_H_
#define QUICHE_QUIC_TOOLS_QUIC_EPOLL_CLIENT_FACTORY_H_

#include <memory>

#include "quiche/quic/core/io/quic_event_loop.h"
#include "quiche/quic/tools/quic_client_factory.h"

namespace quic {

// Factory creating QuicClient instances.
class QuicEpollClientFactory : public ClientFactoryInterface {};

}  // namespace quic

#endif  // QUICHE_QUIC_TOOLS_QUIC_EPOLL_CLIENT_FACTORY_H_