]> git.xonotic.org Git - voretournament/voretournament.git/blob - misc/mediasource/netradiant-src/libs/generic/callbackfwd.h
Move all other sources in a separate subfolder
[voretournament/voretournament.git] / misc / mediasource / netradiant-src / libs / generic / callbackfwd.h
1
2 #if !defined(INCLUDED_CALLBACKFWD_H)
3 #define INCLUDED_CALLBACKFWD_H
4
5 template<typename Return>
6 class Callback0;
7 typedef Callback0<void> Callback;
8
9 template<typename FirstArgument, typename Result = void>
10 class Callback1;
11
12 template<typename FirstArgument, typename SecondArgument, typename Result = void>
13 class Callback2;
14
15 template<typename FirstArgument, typename SecondArgument, typename ThirdArgument, typename Result = void>
16 class Callback3;
17
18 #endif