0
votes
1answer
64 views
C++: how to use std::less<int> with boost::bind and boost::lambda?
I am trying to lean boost::bind, boost::lambda libraries and how they can be used with STL algorithms. Suppose I have vector of int-string pairs which is sorted by int key. Then a …
2
votes
2answers
63 views
Memory leak using multiple boost::connect on single slot_type
Hi,
I'm using boost::signals and leaking memory when I try to connect multiple signals to a single slot_type. I've seen this same leak reported on various forums, but can't find an …
0
votes
1answer
61 views
boost bind compilation error
class A
{
bool OutofRange(string& a, string& b, string c);
void Get(vector <string>& str, string& a, string& b);
}
void A::Get(vector <string> …
0
votes
2answers
43 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::thr …
1
vote
3answers
121 views
sort using boost::bind
bool pred(int k, int l, int num1, int num2)
{
return (num1 < num2);
}
int main()
{
vector <int> nums;
for (int i=50; i > 0; --i)
{
nums.push_back(i);
…
0
votes
2answers
131 views
Help with boost bind/functions
Hi,
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...
...
registe …
7
votes
6answers
538 views
Calling base class definition of virtual member function with function pointer
I want to call the base class implementation of a virtual function using a member function pointer.
class Base {
public:
virtual void func() { cout << "base" << en …
3
votes
2answers
338 views
How do declare an extern “C” function pointer
So I have this code:
#include "boost_bind.h"
#include <math.h>
#include <vector>
#include <algorithm>
double foo(double num, double (*func)(double)) {
return …
1
vote
2answers
224 views
null pointer when getting function pointer using boost::function::target
After reading this answer I thought I had a solution. At least the answer there is what I would like to do but I'm having a problem with the implementation.
here is an outline of …
2
votes
2answers
190 views
delete boost function while in use
I have a situation where a boost::function and boost::bind (actually a std::tr1::function and bind) are being deleted while still in use. Is this safe? I would normally avoid it, …
0
votes
3answers
94 views
boost::bind accessors?
Suppose I have the following code:
int f(int, int);
int main()
{
SomeFunc(boost::bind(f, 1, 2));
}
From the SomeFunc() function, is it possible to access the arguments held …
0
votes
1answer
74 views
Access boost::function arugments
Is it possible to access the arguments contained in a boost::function type?
I'd like to be able to retrieve the address of the function to be called, and the values of the argum …
2
votes
2answers
175 views
Binding to a member variable
Hi,
I am confused as to what boost::bind does when we bind to member variables. With binding to member function, we essentially create a function object, and then call it passing …
1
vote
4answers
347 views
How do you pass boost::bind objects to a function?
I have a one-dimensional function minimizer. Right now I'm passing it function pointers. However many functions have multiple parameters, some of which are held fixed. I have im …
2
votes
1answer
207 views
boost::bind and class member function
Hello!
Consider following example.
#include <iostream>
#include <algorithm>
#include <vector>
#include <boost/bind.hpp>
void
func(int e, int x) {
st …
