#ifndef SECONDWINDOW_H #define SECONDWINDOW_H #include class secondwindow : public QWidget { Q_OBJECT public: /// \fn secondwindow /// \~English /// \brief Constructor. /// \param parent this object's parent /// \~Spanish /// \brief Constructor /// \param parent ventana padre explicit secondwindow(QWidget *parent = 0); signals: /// \fn closeIt /// \~English /// \brief Just a signal that will be emitted when closing /// objects of this class /// \param dummy this parameter is just for making this signal compatible with /// type of slot it will be connected. /// \~Spanish /// \brief Señal que será emitida al cerrar objetos de esta clase /// \param dummy este parameterro existe para que la señal sea compatible con el /// slot al que será conectada. void closeIt(bool dummy); protected: /// \fn closeEvent /// \~English /// \brief Overloaded function that is called when an object of this class is closed. /// \~Spanish /// \brief Función sobrecargada que es invocada cuando se cierra un objeto de /// esta clase. virtual void closeEvent(QCloseEvent *); public slots: }; #endif // SECONDWINDOW_H