blob: b54a69a7d47192090782be3c8b0617d1f8778757 [file] [log] [blame]
mukesh agrawal186af052012-01-11 15:07:34 -08001// Copyright (c) 2012 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_callback.h"
6
7namespace shill {
8
9MockCallback::MockCallback() :
10 CallbackWithReturnValueImpl<
11 EmptyClass, bool (EmptyClass::*)(), bool>(NULL, NULL) {}
12
13MockCallback::~MockCallback() {}
14
15} // namespace shill