-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathfunction.hpp
More file actions
31 lines (20 loc) · 1.01 KB
/
function.hpp
File metadata and controls
31 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
Copyright 2013 Adobe
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
/**************************************************************************************************/
#ifndef ADOBE_FUNCTION_HPP
#define ADOBE_FUNCTION_HPP
#include <functional>
/**************************************************************************************************/
namespace adobe {
/**************************************************************************************************/
/// \deprecated Use std::function instead.
template <class Signature>
using function = std::function<Signature>;
/**************************************************************************************************/
} // namespace adobe
/**************************************************************************************************/
#endif
/**************************************************************************************************/