00001 /*************************************************************************** 00002 alertdialog.h - description 00003 ------------------- 00004 begin : Sun Nov 4 2001 00005 copyright : (C) 2001 by Eggert Ehmke 00006 email : eggert.ehmke@berlin.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef ALERTDIALOG_H 00019 #define ALERTDIALOG_H 00020 00021 #include <ntqwidget.h> 00022 #include "AlertDlg.h" 00023 00028 class AlertDialog : public AlertDlg 00029 { 00030 Q_OBJECT 00031 public: 00032 AlertDialog(TQWidget *parent=0, const char *name=0); 00033 ~AlertDialog(); 00034 public slots: 00035 void slotOk (); 00036 signals: 00037 void signalOk (); 00038 }; 00039 00040 #endif