Click here to Skip to main content
15,894,896 members
Articles / Programming Languages / C++

Fast C++ Delegate: Boost.Function 'drop-in' replacement and multicast

Rate me:
Please Sign up or sign in to vote.
4.86/5 (51 votes)
1 Jun 200733 min read 292.7K   1.9K   110  
An article on the implementation of a fast C++ delegate with many advanced features.
#ifndef INVOKER_HPP_INCLUDED
#define INVOKER_HPP_INCLUDED

template <typename R>
struct Invoker0
{
	template <class TDelegate>
	R operator()(TDelegate const & d) {return d();}
};

template <typename R, typename A1>
struct Invoker1
{
	A1 a1;

	template <class TDelegate>
	R operator()(TDelegate const & d) {return d(a1);}
};

template <typename R, typename A1, typename A2>
struct Invoker2
{
	A1 a1;
	A2 a2;

	template <class TDelegate>
	R operator()(TDelegate const & d) {return d(a1, a2);}
};

template <typename R, typename A1, typename A2, typename A3>
struct Invoker3
{
	A1 a1;
	A2 a2;
	A3 a3;

	template <class TDelegate>
	R operator()(TDelegate const & d) {return d(a1, a2, a3);}
};

#endif//INVOKER_HPP_INCLUDED

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Other
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions