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