1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/****************************************************************************
** Form interface generated from reading ui file 'msgDialog.ui'
**
** Created: Fri Nov 24 14:48:36 2000
** by: The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef MSGDIALOG_H
#define MSGDIALOG_H
#include "ui_msgdialog.h"
namespace QTerm
{
class msgDialog : public QDialog
{
Q_OBJECT
public:
msgDialog( QWidget* parent = 0, Qt::WFlags fl = 0 );
~msgDialog();
Ui::msgDialog ui;
};
} // namespace QTerm
#endif // MSGDIALOG_H
|