mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-30 07:31:30 +00:00
19 lines
454 B
C
19 lines
454 B
C
|
|
||
|
#if !defined(INCLUDED_CALLBACKFWD_H)
|
||
|
#define INCLUDED_CALLBACKFWD_H
|
||
|
|
||
|
template<typename Return>
|
||
|
class Callback0;
|
||
|
typedef Callback0<void> Callback;
|
||
|
|
||
|
template<typename FirstArgument, typename Result = void>
|
||
|
class Callback1;
|
||
|
|
||
|
template<typename FirstArgument, typename SecondArgument, typename Result = void>
|
||
|
class Callback2;
|
||
|
|
||
|
template<typename FirstArgument, typename SecondArgument, typename ThirdArgument, typename Result = void>
|
||
|
class Callback3;
|
||
|
|
||
|
#endif
|