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
2answers
811 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
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>
...
5
votes
4answers
378 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* ...
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
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*, ...
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 ...
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
322 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
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 ...
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
2answers
71 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
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
2answers
103 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
2answers
128 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
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
2answers
220 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
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
1answer
288 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
495 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
1answer
215 views
How to call shared_ptr<boost::signal> from a vector in a loop?
I've got a working callback system that uses boost::signal. I'm extending it into a more flexible and efficient callback manager which uses a vector of shared_ptr's to my signals. I've been able to ...
1
vote
2answers
362 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, ...
1
vote
2answers
889 views
Help with boost bind/functions
I have this function signature I have to match
typedef int (*lua_CFunction) (lua_State *L);//target sig
Here's what I have so far:
//somewhere else...
...
...
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
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
121 views
Implement no-op functor using boost::bind
I have a function void get(boost::function<void(void)> callback) { callback(); }.
I want to make a call like get(boost::bind(/* don't know what to put here*/)); without implementing any other ...
0
votes
1answer
68 views
Boost.Bind with Function and Python
I get some compile time errors and I can't understand why that is. The following code will refuse to compile, giving me the following errors:
error C2664: 'void (PyObject *,const char ...
0
votes
0answers
115 views
Making a function call performed from a static function, do something after return
This is for the purpose of a client/server program. The client asks for some data off the server, and receives it. Upon receiving this data from a Boost socket on the client side, I handle this ...
0
votes
1answer
496 views
C++ Functors and Zero
First a disclaimer, I am replacing a bunch of code which uses boost::function and boost::bind. However, I am moving to a codebase which does not allow rtti. I would like to keep using boost but ...