A simple class demonstrating Qt's signals and slots.
Definition qt_signals.hpp:36
void mySignal(const QString &message)
Signal emitted with a message.
void onMySignal(const QString &message)
Slot that receives a message.
Definition qt_signals.cpp:23
void emitSignal(const QString &message)
Emits the signal with the provided message.
Definition qt_signals.cpp:19
Demonstrates the usage of Qt's signals and slots mechanism.
Definition qt_signals.cpp:13