// Copyright (c) 2012 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. #include "quiche/quic/test_tools/simulator/actor.h" #include <string> #include <utility> #include "quiche/quic/test_tools/simulator/simulator.h" namespace quic { namespace simulator { Actor::Actor(Simulator* simulator, std::string name) : … { … } Actor::~Actor() { … } void Actor::Schedule(QuicTime next_tick) { … } void Actor::Unschedule() { … } } // namespace simulator } // namespace quic