blob: 735fa9c3450c2ee1ff7c202f0125d07866b9e6aa [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#ifndef SHILL_DHCP_CONFIG_
6#define SHILL_DHCP_CONFIG_
7
8#include "shill/ipconfig.h"
9
10namespace shill {
11
12class DHCPConfig : public IPConfig {
13 public:
14 explicit DHCPConfig(const Device &device);
15 virtual ~DHCPConfig();
16
17 private:
18 DISALLOW_COPY_AND_ASSIGN(DHCPConfig);
19};
20
21} // namespace shill
22
23#endif // SHILL_DHCP_CONFIG_