blob: 96a596b344472c3cb7dff143e76c9ee40b96a504 [file] [log] [blame]
// Copyright (c) 2018 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_COMMON_PLATFORM_API_QUICHE_THREAD_H_
#define QUICHE_COMMON_PLATFORM_API_QUICHE_THREAD_H_
#include <string>
#include "quiche_platform_impl/quiche_thread_impl.h"
#include "quiche/common/platform/api/quiche_export.h"
namespace quiche {
// A class representing a thread of execution in QUIC.
class QUICHE_EXPORT_PRIVATE QuicheThread : public QuicheThreadImpl {
public:
QuicheThread(const std::string& string) : QuicheThreadImpl(string) {}
QuicheThread(const QuicheThread&) = delete;
QuicheThread& operator=(const QuicheThread&) = delete;
// Impl defines a virtual void Run() method which subclasses
// must implement.
};
} // namespace quiche
#endif // QUICHE_COMMON_PLATFORM_API_QUICHE_THREAD_H_