mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-04-04 15:27:29 +03:00
It's way too over-engineered for what we need to do, and we can do much simpler using C++11.
11 lines
195 B
C++
11 lines
195 B
C++
#ifndef __DELEGATE_H__
|
|
#define __DELEGATE_H__
|
|
|
|
#include <functional>
|
|
|
|
typedef std::function<void(void)> function_t;
|
|
|
|
#define BIND(function) std::bind(function, this)
|
|
|
|
#endif /* __DELEGATE_H__ */
|