callbackfwd.h
Go to the documentation of this file.00001
00002 #if !defined(INCLUDED_CALLBACKFWD_H)
00003 #define INCLUDED_CALLBACKFWD_H
00004
00005 template<typename Return>
00006 class Callback0;
00007 typedef Callback0<void> Callback;
00008
00009 template < typename FirstArgument, typename Result = void >
00010 class Callback1;
00011
00012 template < typename FirstArgument, typename SecondArgument, typename Result = void >
00013 class Callback2;
00014
00015 template < typename FirstArgument, typename SecondArgument, typename ThirdArgument, typename Result = void >
00016 class Callback3;
00017
00018 #endif