summaryrefslogtreecommitdiff
path: root/dhcp_config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dhcp_config.cc')
-rw-r--r--dhcp_config.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/dhcp_config.cc b/dhcp_config.cc
new file mode 100644
index 00000000..fbba26ea
--- /dev/null
+++ b/dhcp_config.cc
@@ -0,0 +1,19 @@
+// Copyright (c) 2011 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.
+
+#include "shill/dhcp_config.h"
+
+#include <base/logging.h>
+
+namespace shill {
+
+DHCPConfig::DHCPConfig(const Device &device) : IPConfig(device) {
+ VLOG(2) << "DHCPConfig created.";
+}
+
+DHCPConfig::~DHCPConfig() {
+ VLOG(2) << "DHCPConfig destroyed.";
+}
+
+} // namespace shill