Tagged Questions
The boost-function tag has no wiki summary.
8
votes
1answer
154 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
347 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. ...
7
votes
2answers
769 views
How to use boost::bind with non-copyable params, for example boost::promise?
Some C++ objects have no copy constructor, but have move constructor.
For example, boost::promise.
How can I bind those objects using their move constructors ?
#include <boost/thread.hpp>
void ...
6
votes
1answer
217 views
Can tr1::function swallow return values?
The boost::function FAQ item 3 specifically addresses the scenario I am interested in:
Why are there workarounds for void
returns? C++ allows them! Void returns
are permitted by the C++ ...
5
votes
4answers
366 views
Delete raw pointer argument to boost::bind
Lets say I have heap allocated A*, which I want to pass as argument to boost::bind.
boost::bind is saved for later processing in some STL like container of boost::functions's.
I want to ensure A* ...
5
votes
2answers
3k 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
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
4answers
187 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
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 ...
4
votes
1answer
997 views
C++ virtual function call versus boost::function call speedwise
I wanted to know how fast is a single-inheritance virtual function call when compared to one same boost::function call. Are they almost the same in performance or is boost::function slower?
I'm aware ...
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
312 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
380 views
Why can't I use a boost::function in an Objective-C++ block?
The following code throws an exception
terminate called after throwing an instance of ...
3
votes
1answer
322 views
std::tr1::function::target<TFuncPtr> and co-/contravariance
Since I love progamming in both C# and C++, I'm about to implementing a C#-like event system as a solid base for my planned C++ SFML-GUI.
This is only an excerpt of my code and I hope this clarifies ...
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
89 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 ...
2
votes
2answers
140 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
59 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
300 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
165 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
1answer
169 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
322 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 ...
2
votes
2answers
287 views
Storing boost function
I have to store a list of different boost::function objects. To provide this I'm using boost::any. I have a few functions which takes different functions signatures, pack them into any and then insert ...
2
votes
3answers
197 views
Pointers to functions
I have to pass function into pointer. For this purposes I'm using boost::function. The function which catches the pointer is overloaded for different signatures. For example:
void ...
2
votes
2answers
665 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 ...
1
vote
2answers
48 views
how to combine 2 independent boost::bind() into one boost::function?
I have 2 functions f() and g(). I want to call them in order every time. Can I get a boost::function to do this?
E.g. something like:
boost::function functor = boost::bind( boost::bind(f), ...
1
vote
1answer
97 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
2answers
92 views
Bind function pointer to boost::function object
How can I initialize a boost::function object with a raw function pointer?
Metacode
extern "C"
{
class Library
{
...
};
Library* createLibrary();
}
...
void* ...
1
vote
1answer
82 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
105 views
boost asio compilation error with async functions
I want to create an async. server.
i succeed to do that, but now i want to bind async_read/asyn_write functions to caller object function. So i tried to do that with boost::function
here you have my ...
1
vote
2answers
108 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
0answers
53 views
How to keep a registry of variable parameter functions
I'll explain what I'm trying to do:
I'm working on a game. In order to handle the graphics, I have a stack of ScreenLayers that I update and draw. The ScreenLayer is responsible for providing ...
1
vote
6answers
125 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
138 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
119 views
C++ Load function from DLL into Boost function
I want to load a particular function from DLL and store it inside the Boost function. Is this possible?
typedef void (*ProcFunc) (void);
typedef boost::function<void (void)> ProcFuncObj;
...
1
vote
2answers
182 views
boost bind class function pointer
class Foo
{
double f1( int x, std::string s1 );
double f2( int x, SomeClass s2 );
}
I want to be able to bind Foo.f1's s1 without an instance of foo to create in essense
typedef double ...
1
vote
1answer
190 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
1answer
203 views
Incomplete type using typedef function pointer
I've got an abstract base class that defines an interface to data sinks. Concrete implementations of data sinks are acquired via factories. In an effort to tidy up code, I created a typedef for the ...
1
vote
2answers
138 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
1answer
272 views
Problem with boost::bind, boost::function and boost::factory
I'm trying without success to use a boost::bind with a boost::factory
I have this class Zambas with 4 arguments (2 strings and 2 ints) and
class Zambas {
public:
Zambas(const std::string&, ...
1
vote
2answers
424 views
Pass and call a member function (boost::bind / boost::function?)
I have a probably embarassingly simple problem: pass and call a member function in a class. I know I want to use BOOST bind (and or function), but I haven't really grasped the concept to it yet.
The ...
1
vote
2answers
323 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 ...
1
vote
3answers
193 views
boost::function and multiple argument member-function
I have the following definition of a boost::function object:
typedef boost::function<std::string (std::string, std::string)> concat;
I am passing this function as a struct constructor ...
1
vote
3answers
96 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
2answers
389 views
C++ Boost function comparison
I have a class which contains boost::function as one of its arguments. I have to make this class equality comparable but the boost::function is not equality comparable. Is there a easy workaround for ...
1
vote
1answer
132 views
boost::function and plain function pointers: ambigous overload
Given the following member function overload to take various functors
class Foo {
public:
void bar(boost::function<void(int)> func);
void bar(boost::function<void(float)> ...
1
vote
1answer
797 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
2answers
352 views
STL algorithms on containers of boost::function objects
I have the following code that uses a for loop and I would like to use transform, or at least for_each instead, but I can't see how.
typedef std::list<boost::function<void(void) > ...
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, ...