Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

receiver.h Example File
network/broadcastreceiver/receiver.h

    #ifndef RECEIVER_H
    #define RECEIVER_H

    #include <QDialog>

    class QLabel;
    class QPushButton;
    class QUdpSocket;

    class Receiver : public QDialog
    {
        Q_OBJECT

    public:
        Receiver(QWidget *parent = 0);

    private slots:
        void processPendingDatagrams();

    private:
        QLabel *statusLabel;
        QPushButton *quitButton;
        QUdpSocket *udpSocket;
    };

    #endif


Copyright © 2004 Trolltech Trademarks
Qt 4.0.0-b1