blob: f964602130263818790e82c48ba1102fd128c9f8 [file] [log] [blame]
Paul Stewartf65320c2011-10-13 14:34:52 -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/mock_dns_client.h"
6
7#include <vector>
8#include <string>
9
10#include "shill/ip_address.h"
11
12using std::string;
13using std::vector;
14
15namespace shill {
16
17MockDNSClient::MockDNSClient()
18 : DNSClient(IPAddress::kFamilyIPv4, "", vector<string>(), 0, NULL, NULL) {}
19
20MockDNSClient::~MockDNSClient() {}
21
22} // namespace shill