Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame^] | 1 | #ifndef ADDCONTACTPANEL_H |
2 | #define ADDCONTACTPANEL_H | ||||
3 | |||||
4 | #include <QDialog> | ||||
5 | |||||
6 | namespace Ui { | ||||
7 | class AddContactPanel; | ||||
8 | } | ||||
9 | |||||
10 | class AddContactPanel : public QDialog | ||||
11 | { | ||||
12 | Q_OBJECT | ||||
13 | |||||
14 | public: | ||||
15 | explicit AddContactPanel(QWidget *parent = 0); | ||||
16 | ~AddContactPanel(); | ||||
17 | |||||
18 | private: | ||||
19 | Ui::AddContactPanel *ui; | ||||
20 | }; | ||||
21 | |||||
22 | #endif // ADDCONTACTPANEL_H |