blob: fbba26ead5adefe869c542c2ba4b8b41a9e00a06 [file] [log] [blame]
Darin Petkov50308cd2011-06-01 18:25:07 -07001// Copyright (c) 2011 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/dhcp_config.h"
6
7#include <base/logging.h>
8
9namespace shill {
10
11DHCPConfig::DHCPConfig(const Device &device) : IPConfig(device) {
12 VLOG(2) << "DHCPConfig created.";
13}
14
15DHCPConfig::~DHCPConfig() {
16 VLOG(2) << "DHCPConfig destroyed.";
17}
18
19} // namespace shill