Blender V4.3
function.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
2 *
3 * SPDX-License-Identifier: Apache-2.0 */
4
5#ifndef __UTIL_FUNCTION_H__
6#define __UTIL_FUNCTION_H__
7
8#include <functional>
9
11
12#define function_bind std::bind
13#define function_null nullptr
14using std::function;
15using std::placeholders::_1;
16using std::placeholders::_2;
17using std::placeholders::_3;
18using std::placeholders::_4;
19using std::placeholders::_5;
20using std::placeholders::_6;
21using std::placeholders::_7;
22using std::placeholders::_8;
23using std::placeholders::_9;
24
26
27#endif /* __UTIL_FUNCTION_H__ */
#define CCL_NAMESPACE_END