1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-04 15:27:29 +03:00
gmenu2x/src/delegate.h
Paul Cercueil 88f54e1ccc Drop incredibly dirty and huge file FastDelegate.h
It's way too over-engineered for what we need to do, and we can
do much simpler using C++11.
2013-07-29 12:58:25 -04:00

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__ */