|
Event-Driven Programming in C++ 1.0
A case study on event-driven programming in C++
|
Declaration of a simple Qt signals and slots example class. More...
#include <QObject>#include <QString>Go to the source code of this file.
Classes | |
| class | qt_signals::QtSignalsExample |
| A simple class demonstrating Qt's signals and slots. More... | |
Namespaces | |
| namespace | qt_signals |
| Demonstrates the usage of Qt's signals and slots mechanism. | |
Declaration of a simple Qt signals and slots example class.
This file declares the QtSignalsExample class, which demonstrates the use of Qt's signals and slots mechanism for event-driven programming. The class emits a signal and provides a slot to handle the event.