The boost-signals tag has no wiki summary.
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 ...
2
votes
1answer
46 views
Bind a boost signal with phoenix bind
I am using boost spirit qi to parse inbound data then dispatch the correct functionality depending on it's content.
I am using boost::signals to manage the callbacks; my problem is that I don't seem ...
1
vote
2answers
60 views
boost::signals::scoped_connection doesn't work in std::vector. why?
As I understand it, scoped_connections are meant to automatically disconnect when they go out of scope, and not before. I've found that this doesn't work correctly when the scoped_connection is in ...
0
votes
1answer
37 views
boost::signal slot_type with a template
I'm getting a build error when building for the following function:
template <class T> class Event {
public:
typedef boost::signal<void (void*, const T)> signal_t;
typedef ...
0
votes
2answers
125 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
1answer
87 views
Is this a correct and appropriate way to use boost signals?
I am creating an MVC application and I want a way for the model to be able to send output text to the GUI to be displayed.
A few people have recommended function pointers but I have now learned that ...
0
votes
0answers
54 views
Boost signals during destructor causing sigabrt
I started tracking object destruction using boost::signals2. I wrote a small test just to see if I could still use signals in destructors here. It seemed to work. I then started using it for tracking ...
2
votes
2answers
142 views
Boost::signals2 - descruction of an object with the slot
Consider this:
#include <boost/signals2.hpp>
#include <iostream>
struct object_with_slot
{
void operator()()
{
std::cout << "Slot called!" << std::endl;
member = 50500;
...
2
votes
2answers
121 views
Are boost::signals slots called synchronously or asynchronously?
Can anyone tell me are boost::signals slots called synchronously or asynchronously?
For example I have this piece of code:
struct Hello
{
void operator()() const
{
std::cout << "Hello ...
0
votes
2answers
283 views
c++ Netbeans 7.2.1 linking boost libraries correctly
I've recently switched from visual studio 2010 express to using NetBeans, and i'm already very impressed with the layout and simplicity, even though it did take a bit of nudging to compile right. ...
1
vote
1answer
76 views
Boost signals - type passed as parameter
I found this C++ code that uses boost signals and I'm trying to understand it.
// A boost::signal wrapper structure
template <typename Signature>
struct SignalBase : public boost::noncopyable
...
0
votes
1answer
70 views
Using Hypodermic with Boost.Signals2
In order to use Boost.Signals2 with Hypodermic, how would I go about connecting the slots? Would I place the connection code within the OnActivating block?
Am I right in thinking they are not ...
1
vote
1answer
138 views
Firebreath plugin registering issue in windows xp
I'm using firebreath to develop a browser plugin in windows xp using visual studio 2010. The plugin uses boost signals, filesystem and system, libcurl libraries.
The plugin builds successfully but ...
1
vote
1answer
74 views
A map of boost:signals with boost:function defintion
I am trying to create a simple manager that will map error codes to functions. But since a map copies the values and a signal is noncopyable that is not a solution. I cannot use a map of shared_ptr ...
1
vote
0answers
43 views
Alternative to boost:signals [duplicate]
Possible Duplicate:
Which C++ signals/slots library should I choose?
I've been using boost signals/signals 2 for a while to allow event hookups/function dispatching.
It works fine but I ...
2
votes
1answer
201 views
In boost::signals, what is the difference between 'slot_type' and 'slot_function_type'?
Towards the end of this tutorial for the boost::signals library, under the heading "Passing slots" a type called 'slot_type' is used to pass the desired slot function to be connected to the signal. ...
2
votes
1answer
179 views
Is there a way to connect a boost signal directly to another signal?
I was wondering if there is a nicer way to connect a Boost signal of one class directly to a signal of another class?
For example imagine a facade class with a bunch of members which provide their ...
0
votes
1answer
317 views
class 'boost ::shared_ptr<T>' needs to have dll-interface to be used by clients of class 'boost::signals::connection'
I get the following error on compiling the code.
c:\boost_1_48_0\boost\signals\connection.hpp(118) : warning C4251: 'boost::signals::connection::con' : class 'boost
::shared_ptr<T>' needs to ...
3
votes
2answers
175 views
Is there some Boost functionality for simulating a Glib::Dispatcher?
I am currently in the process of refactoring an mid-sized software project. It contains a central kernel-like class that is used by multiple threads. Currently, this class uses a Glib::Dispatcher for ...
1
vote
1answer
375 views
Error: “cannot access private member declared in class 'boost::signals2::scoped_connection'”?
class Whatever
{
public:
virtual ~Whatever();
protected:
Whatever();
virtual void SomeMethod();
void OnEventOccurred(int x);
std::vector<boost::signals2::scoped_connection> ...
3
votes
2answers
119 views
Using boost modules without the rest of boost?
I want to include boost signals in a small educational framework I am developing, but I don't want to add everything, as boost is quite big, what I need is thread, signals 1&2 and asio.
My ...
0
votes
1answer
245 views
How to make a C++ boost::signal be caught from an object which encapsulates the object which emits it?
I have a TcpDevice class which encapsulates a TCP connection, which has an onRemoteDisconnect method which gets called whenever the remote end hangs up. Then, there's a SessionManager object which ...
1
vote
1answer
206 views
Deallocating the callback listener object in boost bind when notifier/signal goes out of scope
Am in a situation to hold pointers in a vector just so that I can use them to release the memory in the dtor.
I have an object listening for callbacks(slots) from the boost signals.These objects ...
0
votes
1answer
50 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 ...
1
vote
0answers
199 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 ...
4
votes
1answer
1k 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
386 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, ...
3
votes
1answer
508 views
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, ...
2
votes
2answers
943 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
3answers
2k 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 ...
5
votes
1answer
4k views
Can not compile boost::signal tutorial using gcc 4.5 on ubuntu 11.04
I'm trying to complete the boost::signal tutorial at http://www.boost.org/doc/libs/1_47_0/doc/html/signals/tutorial.html#id2850736
However Eclipse CDT shows parsing errors with whichever syntax I use
...
0
votes
2answers
272 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
120 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 ...
19
votes
4answers
5k 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 ...
1
vote
2answers
312 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>
...
1
vote
1answer
582 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 ...
2
votes
1answer
199 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
454 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
1k 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 ...
3
votes
4answers
804 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
1k 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
461 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 ...
3
votes
1answer
689 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 ...
2
votes
1answer
174 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.
...
3
votes
1answer
487 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 ...
0
votes
1answer
328 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 ...
2
votes
1answer
582 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
1k 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
57 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 ...
0
votes
1answer
222 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()),
...
