Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
7k views

Complete example using Boost::Signals for C++ Eventing

I’m aware of the tutorial at boost.org addressing this Boost.org Signals Tutorial, but the examples are not complete and somewhat over simplified. I’m a C# programmer that got put on a C++ project so ...
9
votes
4answers
1k views

Can Qt signals return a value?

Boost.Signals allows various strategies of using the return values of slots to form the return value of the signal. E.g. adding them, forming a vector out of them, or returning the last one. The ...
5
votes
2answers
729 views

Boost: what exactly is not threadsafe in Boost.Signals?

I read at multiple places that Boost.Signals is not threadsafe but I haven't found much more details about it. This simple quote doesn't say really that much. Most applications nowadays have threads - ...
5
votes
3answers
5k views

Can I create a software watchdog timer thread in C++ using Boost Signals2 and Threads?

I am running function Foo from somebody else's library in a single-threaded application currently. Most of the time, I make a call to Foo and it's really quick, some times, I make a call to Foo and ...
4
votes
1answer
220 views

How to achieve QT-like syntax of signal connections with Boost::Signal

In QT we can connect signals and slots using the following simple syntax: connect(pObject1, signal1, pObject2, slot2) For instance, one can write something like: A a; B b; connect(&a, ...
3
votes
1answer
111 views

(C++, boost) error: function returning a function

Although there is at least one similar question, I still ask mine since that one hasn't got solved and seems more complicated. I'm trying to simplify mine. I have a .cpp file that uses .h as below, ...
3
votes
1answer
321 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
3k views

How to use boost::bind in C++/CLI to bind a member of a managed class

I am using boost::signal in a native C++ class, and I now I am writing a .NET wrapper in C++/CLI, so that I can expose the native C++ callbacks as .NET events. When I try to use boost::bind to take ...
3
votes
4answers
1k views

Boost::signal memory access error

I'm trying to use boost::signal to implement a callback mechanism, and I'm getting a memory access assert in the boost::signal code on even the most trivial usage of the library. I have simplified it ...
2
votes
1answer
100 views

boost signals connection management

I've bashing my head for the last two nights trying to figure this out with no positive result. This is the thing, in boost signals, every time I want to connect, say, a member function of one class ...
2
votes
4answers
353 views

What is the point of Boost::Signals?

Firstly, I am an absolute beginner in programming, so don't make fun of me too much. The only thing that I have seen signals used for are GUI toolkits, and GUI toolkits all come with their own ...
2
votes
1answer
80 views

How to get the return type of a boost::signal?

I use boost::signal with different function signatures and different combiners. In a class that looks like the one beyond I want to get the return of a certain signal declaration. ...
2
votes
1answer
272 views

segfault when using boost::signal with -D_GLIBCXX_DEBUG compiler flag

I'm building with g++, and yesterday a helpful person on SO told me to compile with the -D_GLIBCXX_DEBUG and -D_GLIBCXX_DEBUG_PEDANTIC flags. I did so, and I spent most of yesterday tweaking my code ...
2
votes
3answers
387 views

Is there a way to stop a boost::signal from calling its slots if one of them returns true?

I am using the boost library and my question is about boost::signals. I have a signal that might call many different slots but only one slot will match the call so I want this particular slot to ...
2
votes
2answers
397 views

Memory leak using multiple boost::connect on single slot_type

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 any that mention the ...
2
votes
4answers
540 views

Public boost::signal object

I make my boost::signals public because I'm lazy. class Button { public: signal<void()> clicked; }; int main() { Button btn; btn.clicked.connect(handleClick); } ... rather than ...
1
vote
0answers
65 views

C++ boost signal copy connections

I know boost::signal isn't copyable, but is there anyway one could iterate over the connections and copy the connections? As in, take all the slots and them to another signal? I ask because I have a ...
1
vote
3answers
220 views

C++ member function pointer, boost::signals

I have the following situation, (better in code) class Foo { private: typedef boost::signal<void ()> Signal; Signal signal; public: void ...
1
vote
1answer
277 views

Problems with boost signal2

Why does this simple example not compile, and how can I get around the problem? #include <iostream> #include <boost/signals2/signal.hpp> struct HelloWorld { HelloWorld() { i ...
1
vote
1answer
131 views

Boost::Signals for C++ Data copying

Recently I had a class that looked like class IGraphElement{ typedef void FuncCharPtr(char*, int) ; public: void Add(FuncCharPtr* f) { FuncVec.push_back(f); } void ...
1
vote
1answer
639 views

Using a boost signal within boost::bind

I'm trying to wrap triggering for a boost::signal into a boost::bind object. So what I want is to invoke the signal with some pre-packaged arguments when the boost::function is called. What I have is ...
1
vote
1answer
219 views

block all connections connected to a boost signal

boost signals allows temporarily blocking a connection via a connection member function. However, I have a single signal with many connections. The connections are stored and maintained by their ...
1
vote
1answer
321 views

Pass boost::signal as boost::function

I have a class with signal member encapsulated with boost::function. Is it possible to add another signal as a handler with this API? class Foo { public: VOID ...
1
vote
3answers
679 views

How to convert an existing callback interface to use boost signals & slots

I've currently got a class that can notify a number of other objects via callbacks: class Callback { virtual NodulesChanged() =0; virtual TurkiesTwisted() =0; }; class Notifier { ...
1
vote
1answer
50 views

How to prevent removal of slots from a certain signal?

Is it possible to block the removal of certain slots from a signal in the boost.signals library? If so how should a code that does such a thing will look like? Do I need to create a derived class ...
1
vote
1answer
560 views

Excluding boost signal calling

There is a signal and several objects with slots. I want to implement the behavior when one object calls signal and blocks its own connection. I guess a small snippet will be more informative: ...
1
vote
3answers
639 views

boost signal double free?

I'm having a hell of a time trying to debug some kind of memory access error, which I believe is a double free. The code is too complex to post, but I can try to describe it. Basically, I have two ...
1
vote
5answers
808 views

How to make a copyable boost::signal?

I get why boost::signal is noncopyable (it's because copying a signal doesn't have a clear meaning), but I need a version of it that does provide some sort of copy ctor (either a no-op or one that ...
0
votes
1answer
26 views

multi-signatures signal management in user classes

I'm very familiar with Qt and I know that we cannot have a similar synthax because we don't have the MOC part here. However I'm trying to have a signal creation management to simplify the declaration ...
0
votes
1answer
132 views

Signals vs Signals2

I have application that may benefit from using one of boost's signals libraries over a homegrown solution. The application is multithreaded but the part that does the signal processing is single ...
0
votes
1answer
125 views

compile error: no class template, too many initializers, no matching function

I haven't been able to remove compile errors using boost::signals. Any idea would be appreciated. Since I've been porting a program that's written 2 years ago adjusting to the current environment, ...
0
votes
1answer
772 views

Can not compile boost::signal tutorial using gcc 4.5 on ubuntu 11.04

I'm trying to compile boost::signal tutorial at http://www.boost.org/doc/libs/1_47_0/doc/html/signals/tutorial.html#id2850736 I got errors whichever syntax I use I have #include ...
0
votes
2answers
95 views

Does the boost.signals2 library need to be built?

My system is having trouble building the boost libraries. I understand that most boost libraries are (fortunately) just headers that do not need to be build (with some exceptions). Does the boost :: ...
0
votes
1answer
64 views

“no matching call” compiler error when using boost::signal

In file A.hpp, I have extern boost::signal<void (model::Bullet&, Point&, Point&, int)> signal_createBullet; and so in file A.cpp, I have boost::signal<void ...
0
votes
2answers
140 views

What is the prototype for Boost::signals2::signal::connect

I would like to encapsulate a signals2::signal object ans expose the connect and operator() functions, but how does their prototypes look like? Example: #include <boost/signals2/signal.hpp> ...
0
votes
1answer
205 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 ...
0
votes
1answer
570 views

boost:: signal library not working

Whenever I compile a program using boost::signal I get following errors: /tmp/ccQFaJsy.o: In function `main': b_vect.cpp:(.text+0xb7): undefined reference to ...
0
votes
1answer
173 views

connecting a function to a boost::signal runs, but doesn't call the function

I have a class Yarl in my code with a member function refresh that I want to bind to two boost::signals. One of these signals is a member of a class EventHandler defined like this: class ...
0
votes
1answer
177 views

Binding a member signal to a function

This line of code compiles correctly without a problem: boost::bind(boost::ref(connected_), boost::dynamic_pointer_cast<session<version> >(shared_from_this()), ...
0
votes
1answer
104 views

How to raise a boost::signal whenever a packet is recieved?

I know that boost.asio has a mechanism that calls a callback function whenever a packet is received but is there an option to emit a signal instead? Do I have to write a function that emits the ...
0
votes
2answers
618 views

Boost: what could be the reasons for a crash in boost::slot<>::~slot?

I am getting such a crash: #0 0x90b05955 in __gnu_debug::_Safe_iterator_base::_M_detach #1 0x90b059ce in __gnu_debug::_Safe_iterator_base::_M_attach #2 0x90b05afa in ...