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