boost::bind is a generalization of the standard C++ functions std::bind1st and std::bind2nd. It supports arbitrary function objects, functions, function pointers, and member function pointers, and is able to bind any argument to a specific value or route input arguments into arbitrary positions.
0
votes
1answer
23 views
Binding with boost works while with std doesnt, whats the diffrence?
I tried to bind a function with std::bind, it kept saying that there is no overload for my set of arguments. It worked with boost::bind. Whats the diffrence between std and boost bind?
Im using:
...
1
vote
1answer
25 views
Is it possible to attach an action to a boost::spirit::rule parser which assigns the parsed result to a member of a (yet) unknown instance?
I'm trying to reference a member of a (yet) unknown instance from within a boost::spirit rule definitions' action, so in pseudocode,
instead of
double_[ref(rN) = _1]
I'm looking for something ...
1
vote
1answer
42 views
How to avoid boost::phoenix when generating with boost::spirit::karma
I'm a victim of error "LNK1179: invalid or corrupt file: duplicate COMDAT"
and these sources lead me to believe that by not using phoenix I could avoid this error.
(This is a follow-up to my ...
1
vote
0answers
43 views
What is a clean way to represent a bind in a uml diagram?
I would like to represent the following code using a UML diagram:
#include <iostream>
#include <boost/bind.hpp>
using namespace std;
class A {
public:
void bar() {std::cout << ...
1
vote
1answer
57 views
Boost binding error in completion handler
I encountered an binding error
/usr/local/include/boost/bind/bind.hpp:457: error: invalid use of void expression
My program is about an asynchronous action using a callback handler as following:
...
2
votes
1answer
29 views
Boost undefined reference error with boost::bind overloaded operators
The code in question:
boost::function<bool()> isSpecialWeapon = boost::bind(&WeaponBase::GetType,this) == WeaponType::SPECIAL_WEAPON;
The error I get is something like so:
undefined ...
0
votes
1answer
44 views
Encapsulating boost::signal and boost::bind
I have a problem now. I am trying to encapsulatie boost::signal and boost::bind into my own Event class.
class MyEvent
{
private:
boost::signal<void ()> Sig;
public:
void ...
1
vote
2answers
60 views
Boost::Bind and virtual function overloads: why do they work?
I wrote some code and got scared that it will not work - so I wrote a prototype:
#include <boost/function.hpp>
#include <boost/bind.hpp>
#include <iostream>
class base {
private:
...
1
vote
2answers
74 views
How can I resolve ambiguity of boost::signals2's slot_type and boost::bind, and why is it even ambiguous?
Considering this example:
#include <boost/signals2/signal.hpp>
#include <boost/bind.hpp>
typedef boost::signals2::signal< void ( double ) > DoubleSignalType;
typedef ...
0
votes
1answer
91 views
boost::bind implicit conversion to boost::function or function pointer
I'm using boost::function like this:
template<class T1>
void run(boost::function<void (T1)> func, string arg)
{
T1 p1 = parse<T1>(arg);
func(p1);
}
When used like this, ...
0
votes
1answer
40 views
What's the use of asio::placeholder::error
The asio library passes an error parameter in a lot of its examples, ie;
http://think-async.com/Asio/asio-1.5.3/src/examples/echo/async_tcp_echo_server.cpp
What's the point of this parameter? Does ...
1
vote
1answer
134 views
C++:BOOST-bind error: no matching function for call to 'bind(<unresolved overloaded function type>, …?
I tried to turn this boost-asio server into a class and I got this one error trying to compile it,
C:\Documents and Settings\tcpip_server\TCPIP_server.h||In member function 'void ...
0
votes
1answer
68 views
Generic function bind() with Boost
I have some C-style functions that return 0 to indicate success, and != 0 on error.
I'd like to "wrap" them into void functions that throw instead of returning a value.
I have written this helper:
...
2
votes
2answers
51 views
How to copy with member access using boost
I have a container of As with
struct A { int f(); }
The container offers iterators and we can for this example assume it's an std::vector. So:
std::vector<A> As;
Now I want to copy the ...
0
votes
1answer
65 views
Using boost::bind to call a function in boost::Statechart
I'm trying to write a program to upload a file to an arduino. The program can open a serial port and receive data from the arduino. The problem comes when I try to use a callback to a function in a ...
0
votes
1answer
72 views
How do I use tr1 function and bind for functions with changing parameters?
I'm currently going from C# to C++ and rewriting some game engine code and I think I'm at a wall with tr1; Essentially what I want to do is have an input layer take input from the touchscreen and then ...
1
vote
2answers
140 views
Passing function pointer arguments with boost
Can the following function pointer passing be simplified/improved with the use of boost::function and/or boost::bind?
void PassPtr(int (*pt2Func)(float, std::string, std::string))
{
int result = ...
2
votes
2answers
114 views
remove_if with boost::bind is slow
I have a std::list of classes and want to remove entries that are marked for delete. I am using std::remove_if and erase.
class MyClass
{
bool isDone(MyData& myData)
{
return ...
0
votes
2answers
124 views
How to pass signal callbacks (using boost::bind)
I'm writing a wrapper for boost::signals2::signal to get a cleaner, more easy to use interface. Here's what I've come up with:
#include <boost/signals2.hpp>
// Wrapper class template for ...
0
votes
3answers
134 views
Boost bind AIX xlc io_service run
Im trying to compile project using boost, binding asio::io_service to boost::thread, and Im getting errors that I dont know how to resolve
Using: IBM XL C/C++ for AIX, V11.1 (5724-X13), Version: ...
0
votes
1answer
60 views
How to get the arguments binded into boost::function?
From the boost::bind docs( http://www.boost.org/doc/libs/1_53_0/libs/bind/bind.html#with_functions ), "The arguments that bind takes are copied and held internally by the returned function object", ...
8
votes
1answer
173 views
How to cast to it boost::bind(&myClass::fun, this, _1, _2, _3) to typedef void (*fun)(arg1, arg2, arg3)?
In lib Bullet there is defined a type:
typedef void (*btNearCallback)(btBroadphasePair& collisionPair, btCollisionDispatcher& dispatcher, const btDispatcherInfo& dispatchInfo);
in there ...
9
votes
1answer
192 views
Why is “boost::function = boost::bind(…)” creating 13 temporaries?
I have some pretty basic test code. I have a class that just logs all operations on it. I bound it to a boost::function object like this:
void Function(const Foo&)
{
...
2
votes
1answer
76 views
Nesting a tr1::bind<> object from tr1::bind() in a new call to tr1::bind()
I'm a little confused why this call to bind doesn't work. I've narrowed the problem down to trying to nest a bind object in a new call to bind.
#include <iostream>
#include <algorithm>
...
0
votes
1answer
67 views
boost::bind along with qtconcurrent::map …can't seem to make it work
Well I require your assistance because I can't seem to find a way to make
QtConcurrent::map work with my
static function and my sequence of elements.
Here is what I'm trying to do:
I want to run ...
-1
votes
1answer
130 views
Raw function pointer vs boost::bind return value [closed]
What's the difference between raw function pointer vs boost::bind pointer return value?
0
votes
1answer
68 views
Using boost::bind with a class containing a boost::mutex
I'm working on a server using a watchdir to add items to an internal collection. The watchdir is browsed periodically by a thread which is created like this :
this->watchDirThread = new ...
0
votes
4answers
76 views
How to convert a function that returns a int to a function that returns a bool using boost::bind?
I have something like the following:
struct A{
virtual int derp(){
if(herp()) return 1;
else return 0;
}
void slurp(){
boost::function<bool(int x, int y)> purp = /** ...
5
votes
1answer
78 views
passing a boost::function to a template; what class is boost::function
I need to pass a distance-function to a template. Therefore I use boost::function and boost::bind. But I do not understand what I have to pass for class Distance:
template<class DataType, class ...
1
vote
2answers
703 views
Using boost::asio::io_service::post()
First i asked this Running a function on the main thread from a boost thread and passing parameters to that function
so now i am trying this:
The following is a console c++ project where i perfectly ...
-1
votes
2answers
505 views
boost::bind with member functions (as boost::asio async write handler)
I'm using boost::bind to pass a handler function to boost::asio::async_write. When I use free functions, it works fine, but when I try to move the functions inside a class, bind produces errors that ...
0
votes
1answer
138 views
Running a function on the main thread from a boost thread and passing parameters to that function
I have some code running in a boost thread that modifies stuff handled by the main thread which is not working and it makes sense.
On android i would have the Handler which is a message queue that ...
0
votes
1answer
117 views
boost::bind help for callback with member function
Hello I am a student working on a program I have that uses a callback of a member function. I came across the use of bind which is exactly what I need. I just am having difficulties getting it ...
1
vote
2answers
171 views
Boost::bind compile error when trying to set member function for boost::::asio::deadline_timer
I'm having a bit of a problem understanding the compile errors I'm getting when trying to create a boost::asio::deadline_timer. I get the errors below with the following code example on MSVC10. It ...
2
votes
3answers
185 views
C++11: return_type (for std::bind) of functor where return type is based on input type
I'm playing with functor composition, where the return type of a functor depends on the input type:
template<typename V>
class F
{
protected:
V v_;
public:
using return_type = ?;
...
1
vote
1answer
103 views
boost::bind - Getting write access to member variable? (Like boost::multi_index::member)
Just out of curiosity, is there a way to get write access to member variables via boost::bind? I can get it via boost::multi_index::member, but just want to know other methods as well.
Example:
...
0
votes
1answer
197 views
Using boost::function and boost::bind to a member variable
I'm trying to create a boost::function that allows setting of a member variable of an object. I've created the simplest example I can think of to get across what I'm trying (and failing) to do. I feel ...
0
votes
1answer
133 views
Boost::bind with object placeholder
I am trying to implement the observer pattern with the catch that I need to add new functionality into each observer later on in the project.
class Obsevers {
public:
virtual ~Obsevers() {}
};
...
0
votes
2answers
143 views
Crash related to boost::function usage in thread pool
I am trying to implement thread pool in C++ using pthread. I want to encapsulate logic related to threads management in one object which is taking ownership of these threads. That means whenever this ...
2
votes
1answer
225 views
How to safely destruct Posix thread pool in C++
I am trying to implement thread pool in C++ using pthread. I want to encapsulate logic related to threads management in one object which is taking ownership of these threads. That means whenever this ...
5
votes
2answers
475 views
C ++ Boost Bind Performance
Are there any performance impacts (positive or negative) when binding functions (using Boost Bind) ?
0
votes
3answers
335 views
boost::bind together with boost::asio. boost::bind follow up
Now I'd like to add two parameters to the function of the former question: boost::bind together with boost::asio. boost::bind not working, copied from an example
EDIT: Sorry, forgot to add the type ...
0
votes
1answer
173 views
boost::bind together with boost::asio. boost::bind not working, copied from an example
Could someone tell me why this does not compile? I basically copied it from an example by Kholkoff (http://lists.boost.org/Archives/boost/2007/04/120339.php), back in 2007, about reads() in sockets ...
3
votes
2answers
436 views
Boost bind and boost function, storing functions with arguments in a vector and then executing them
Sorry for the badly-worded title.
I've been looking through the documentation, but I cannot find anything that might solve this problem I have.
Basically I want to store several function1<void, ...
0
votes
1answer
150 views
typedef of a function pointer for std::string doesn't work
I am trying to defining a specific function pointer type to be used in my calls of boost::bind to resolve issue related to function overloaded not recognized ( by calling static_cast ). I am defining ...
5
votes
1answer
417 views
Chained invocation of C++11 std::bind doesn't work
I have a problem when invoking nested std::bind expressions. The following code demonstrates the problem. It fails to compile with libc++, but works with boost:
#define BOOST 0
#if BOOST
...
2
votes
1answer
306 views
Using nested boost::binds
Compiler: g++ 4.4.3
Boost...: 1.49.0
OS......: Ubuntu
Note: It's been 15 years since I seriously used C++, so I'm relearning and learning new things as I also try to learn Boost.
Given the ...
0
votes
2answers
253 views
C++ with templates, operator overloading and boost::bind - what this small code does?
#include <iostream>
#include <boost/bind.hpp>
struct FCall3Templ {
template<typename ARG1, typename ARG2>
ARG1 operator()(ARG1 arg1, ARG2 arg2) {
return arg1+arg2;
}
};
...
1
vote
1answer
111 views
What is wrong with this boost::lambda::bind usage?
Is there something wrong in this code? I keep getting compilation errors. Basically I want to connect a void returning function to a signal which has a non void return type.
Boost version: Release ...
1
vote
1answer
107 views
boost::bind doesn't work in VC++ 2010 when binding a function that throws exceptions
I have some code which compiles fine under Linux, but I am trying to port it to Windows. I have used the Boost 1.50 precompiled binaries from Boost Pro, but when I compile my code I get this cryptic ...
