blob: 8de2415288dfefd487b46dd81a1925bb002d6b30 [file] [log] [blame]
Paul Stewartbf667612012-06-29 14:49:54 -07001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewartc1dec4d2011-12-08 15:25:28 -08002// 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_connection.h"
6
7#include "shill/ipconfig.h"
8
9namespace shill {
10
11MockConnection::MockConnection(const DeviceInfo *device_info)
Paul Stewartbf667612012-06-29 14:49:54 -070012 : Connection(0, std::string(), Technology::kUnknown, device_info, false) {}
Paul Stewartc1dec4d2011-12-08 15:25:28 -080013
14MockConnection::~MockConnection() {}
15
16} // namespace shill