blob: 79832481af23483d6589c0e461d0664f28088f60 [file] [log] [blame]
erikwright@chromium.org4d61c7d2011-11-29 07:00:29 +09001// Copyright (c) 2011 The Chromium 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 BASE_CALLBACK_FORWARD_H_
6#define BASE_CALLBACK_FORWARD_H_
erikwright@chromium.org4d61c7d2011-11-29 07:00:29 +09007
8namespace base {
9
10template <typename Sig>
11class Callback;
12
13typedef Callback<void(void)> Closure;
14
15} // namespace base
16
17#endif // BASE_CALLBACK_FORWARD_H