summaryrefslogtreecommitdiffabout
path: root/kmicromail/nntpgroupsdlg.h
blob: a21bac7b179d74cb0726e81eadfcbbc393253771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __NNTP_GROUP_DLG_H
#define __NNTP_GROUP_DLG_H

#include <qdialog.h>

class NNTPGroups;
class NNTPaccount;

class NNTPGroupsDlg : public QDialog
{
    Q_OBJECT
public:
    NNTPGroupsDlg(NNTPaccount *account,QWidget * parent=0, const char * name=0);
    virtual ~NNTPGroupsDlg();

protected:
    NNTPGroups*groupsWidget;
    NNTPaccount*m_Account;

protected slots:
    virtual void accept ();
};

#endif