blob: 67eb2cc6d19f5f748ab19183086f7a201a373056 [file] [log] [blame]
// Copyright 2018 The Chromium OS 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 SHILL_ETHERNET_VIRTIO_ETHERNET_H_
#define SHILL_ETHERNET_VIRTIO_ETHERNET_H_
#include <string>
#include "shill/ethernet/ethernet.h"
namespace shill {
class VirtioEthernet : public Ethernet {
public:
VirtioEthernet(Manager* manager,
const std::string& link_name,
const std::string& address,
int interface_index);
~VirtioEthernet() override;
void Start(Error* error,
const EnabledStateChangedCallback& callback) override;
private:
DISALLOW_COPY_AND_ASSIGN(VirtioEthernet);
};
} // namespace shill
#endif // SHILL_ETHERNET_VIRTIO_ETHERNET_H_