Tagged Questions

8
votes
1answer
162 views

Is using boost::bind to pass more arguments than expected safe?

Using boost-bind, the resulting boost-function may receive more arguments than the bound object expects. Conceptually: int func() { return 42; } boost::function<int (int,int,int)> boundFunc = ...
7
votes
1answer
363 views

C++ weird syntax spotted in Boost template parameters

I was having a look at the "Function" class documentation in Boost, and stumbled across this: boost::function<float (int x, int y)> f; I must admit this syntax is highly confusing for me. ...
6
votes
2answers
4k views

How to use boost bind with a member function

The following code causes cl.exe to crash (MS VS2005). I am trying to use boost bind to create a function to a calls a method of myclass: #include "stdafx.h" #include <boost/function.hpp> ...
4
votes
1answer
111 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
4answers
215 views

How can I make boost::function not be so lenient?

typedef boost::function<void (int,bool)> MyCallback; void RegisterCallback(MyCallback callback); class A { public: void GoodCallback(int intArg,bool boolArg) { printf("calling ...
4
votes
3answers
4k views

Class member function as callback using boost::bind and boost::function

I'm working through setting up a member function as a callback for a C-library that I'm using. The C-library sets up callbacks like this: typedef int (*functionPointer_t)(myType1_t*, myType2_t*, ...
4
votes
3answers
2k views

boost::function run-time performance

I'm in the process of implementing a platform independent wrapper for dynamically loaded libraries. Of course when I load functions from the libraries I need to store them as pointers for future use. ...
3
votes
2answers
106 views

Does copying a boost::function also copy the closure?

Say I have a function like this: void someFunction(const ExpensiveObjectToCopy&); If I make a boost::function out if it, that function will store its own cloned copy of the object in its ...
3
votes
2answers
347 views

Unresolved overloaded function type when using a template friend function

I have a problem where I'm trying to stuff a friend function of a class template into a boost::function: #include <boost/function.hpp> template <int N> struct Vec{ friend double ...
3
votes
2answers
1k views

Default value for boost::function argument?

I've got a function that I want to take an optional boost::function argument as a callback for reporting an error condition. Is there some special value I can use a the default value to make it ...
2
votes
2answers
175 views

boost::function in VS2010 : error C2039: 'function' : is not a member of 'boost'

INFO I'd like to use boost::function to pass callback as parameter, like this way: void ReadPacket( boost::function<void (const boost::system::error_code&, Packet* p)> callback); ...
2
votes
1answer
65 views

How to use std::for_each on a range of boost::function objects?

class User { public: User(){} virtual ~User(){} void Test( int in ) { } } User user; vector< boost::function< void() > > functions; ...
2
votes
2answers
323 views

How can I use boost::bind to bind a class member function?

#include <QtCore/QCoreApplication> #include <boost/bind.hpp> #include <boost/function.hpp> class button { public: boost::function<void()> onClick; ...
2
votes
2answers
177 views

boost::bind and reference to temp variable

Suppose I have method: void foo(const std::string& s); Can I create boost::function: boost::function<void(const std::string&)> f = boost::bind(foo, temp); where temp is char* that ...
2
votes
2answers
341 views

How serialize a boost::function to send it in a message_queue

I am actually trying to serialize a boost::function using boost::serialize because I want to share it in a boost::interprocess::message_queue. I only see one way to do that, it is to use the ...
2
votes
1answer
170 views

Is there a generic “clean-up” class in boost?

I simply want a class that does this: class cleanup : boost::noncopyable { public: typedef boost::function0<void> function; explicit cleanup( function f ) : func( f ) { } ~cleanup() ...
2
votes
3answers
330 views

boost::function memory usage

I'm considering using boost::function in my implementation of a timer manager. At schedule timer a boost::function will be passed and at the timer expiration the callback will be executed. Times will ...
1
vote
1answer
57 views

boost::bind & boost::function with partial args

I post you an example of what I want to do, that is easier to explain in this way void myPrinter(const char* text, int number){ printf("\n%s %d\n", text, number); ...
1
vote
1answer
99 views

boost::function alike class

I would like to realize a class Function similar to boost::function, the class Function can use like this in main.cpp : #include <iostream> #include "Function.hpp" int funct1(char c) { ...
1
vote
1answer
92 views

Problems using mpl::if_, boost::function, and a typedef to void

I'm new to the Boost.MPL library, and have some "beginners-problems" Look at this sample: template < typename F > struct A { typedef boost::function_types::parameter_types<F> P; ...
1
vote
2answers
129 views

Boost function and boost bind: Bind the return value?

This is related to this previous question: Using boost::bind with boost::function: retrieve binded variable type. I can bind a function like this: in .h: class MyClass { void foo(int a); ...
1
vote
6answers
136 views

boost function and lambda to wrap a function

I want to convert this simple code: void setZComp(Imath::V3f& pt) { pt.z = 0.0; } int myfunc() { ... std::vector<Imath::V3f> vec(5,Imath::V3f(1.0,1.0,1.0)); ...
1
vote
1answer
152 views

Using std::vector<boost::function> with boost::bind

While trying to get comfortable with boost, stumbled into problem with using boost::function along with std::vector. I'm trying to do a simple thing: have a list of functions with similair signatures ...
1
vote
1answer
198 views

How to create boost::funcition from template signature

recently i was trying to create flexible observer pattern implementation which hides boost::signal. I almost succeeded. I have Observer class which has to have update method matching signature ...
1
vote
2answers
147 views

boost bind to a data member callback behavior

Can someone please explain this piece of code? struct Class { boost::function<void()> member; }; Class c; boost::function<boost::function<void()>()> foo = ...
1
vote
3answers
97 views

Invoking a boost::function through boost::function_base

I have an unordered_map of functions that should be called on an object when an XML file is parsed. I have found that boost::function has a base class named boost::function_base, however as expected I ...
1
vote
1answer
810 views

What is wrong with this boost::lambda use?

Why is this boost::lambda expression not working? boost::function<bool (boost::uint64_t, boost::uint64_t&, unsigned int, float)> myFunct = boost::lambda::_3 < 1; I get theses ...
1
vote
4answers
1k views

Getting return value from a boost::threaded member function?

I have a worker class like the one below: class Worker{ public: int Do(){ int ret = 100; // do stuff return ret; } } It's intended to be executed with boost::thread and boost::bind, ...
0
votes
0answers
49 views

Exception: call to empty boost::function uncatchable?

I'm having a serious issue. I have overloaded the terminate method in order to print the backtrace I can't find out where it could be called, since the stacktrace is not really eloquent. I have ...
0
votes
2answers
60 views

static declaration in a c++ class

I don't understand why the first doesn't work instead the second works! #include <boost/bind.hpp> #include <boost/function.hpp> #include "concurrentQueue.h"; class TestClass { ...
0
votes
0answers
95 views

boost::bind & boost::function [closed]

I'd like to save a function to call it later. I wrote this code, but it gives me back many errors.. void myPrinter(const char* text){ printf("\n%s\n", text); } int main(){ ...
0
votes
1answer
59 views

Boost Overload strange behaviour.. how `int (int ), int (std::string )` differs from `int (int ), int (std::string ), std::string (std::string)`?

So there is that great lib called OverLoad (link to downloadable svn directory, lib is header only). it can accept functions of any types into it and automatically decide which one you are calling. It ...
0
votes
2answers
2k views

unresolved external symbol “public: void __thiscall…”

I'm using boost::function to enable the passing of a function to a Button constructor so it holds that function. Calling it whenever it is activated. typedef boost::function< void() > Action; ...