blob: 74d538aaf19077affcb249277caf08029e098008 [file] [log] [blame]
Darin Petkov36a3ace2012-03-06 17:22:14 +01001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/mock_vpn.h"
6
7namespace shill {
8
9MockVPN::MockVPN(ControlInterface *control,
10 EventDispatcher *dispatcher,
11 Metrics *metrics,
12 Manager *manager,
13 const std::string &link_name,
14 int interface_index)
15 : VPN(control, dispatcher, metrics, manager, link_name, interface_index) {}
16
17MockVPN::~MockVPN() {}
18
19} // namespace shill