blob: 8df8a0354b8d01c098df1c35605891d41abe80b6 [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()
Eric Shienbrood3e20a232012-02-16 11:35:56 -050018 : DNSClient(IPAddress::kFamilyIPv4, "", vector<string>(), 0, NULL,
19 ClientCallback()) {}
Paul Stewartf65320c2011-10-13 14:34:52 -070020
21MockDNSClient::~MockDNSClient() {}
22
23} // namespace shill