summaryrefslogtreecommitdiffabout
path: root/kmicromail/nntpgroupsdlg.h
Unidiff
Diffstat (limited to 'kmicromail/nntpgroupsdlg.h') (more/less context) (show whitespace changes)
-rw-r--r--kmicromail/nntpgroupsdlg.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/kmicromail/nntpgroupsdlg.h b/kmicromail/nntpgroupsdlg.h
new file mode 100644
index 0000000..a21bac7
--- a/dev/null
+++ b/kmicromail/nntpgroupsdlg.h
@@ -0,0 +1,24 @@
1#ifndef __NNTP_GROUP_DLG_H
2#define __NNTP_GROUP_DLG_H
3
4#include <qdialog.h>
5
6class NNTPGroups;
7class NNTPaccount;
8
9class NNTPGroupsDlg : public QDialog
10{
11 Q_OBJECT
12public:
13 NNTPGroupsDlg(NNTPaccount *account,QWidget * parent=0, const char * name=0);
14 virtual ~NNTPGroupsDlg();
15
16protected:
17 NNTPGroups*groupsWidget;
18 NNTPaccount*m_Account;
19
20protected slots:
21 virtual void accept ();
22};
23
24#endif