Tagged Questions

4
votes
1answer
101 views

How does boost::function support template class with different length template parameters

I want to use boost preprocessor to declare template classes with different template variable length, basically like what boost::function does. #if !BOOST_PP_IS_ITERATING #ifndef D_EXAMPLE_H #define ...
4
votes
2answers
2k views

How to force template function overload for boost::bind?

I'm trying to create predicate for std::find_if by using boost::bind together with boost::contains (from boost/algoritm/string library). Following snippet shows two ways how I'm trying to accomplish ...
2
votes
2answers
664 views

Error C2228 when constructing boost::function object in constructor argument list

The code below does not compile in Visual C++ 2005. class SomeClass { public: boost::function<void()> func; SomeClass(boost::function<void()> &func): func(func) { } }; void ...