blob: f017d6d15fb207ff08f0df4a6eb73e9f0c536aff [file] [log] [blame]
Yingdi Yu847aa862013-10-09 16:35:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Yingdi Yu
5 *
6 * BSD license, See the LICENSE file for more information
7 *
8 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
9 */
10
11#ifndef CONTACTPANEL_H
12#define CONTACTPANEL_H
13
14#include <QDialog>
15
16namespace Ui {
17class ContactPanel;
18}
19
20class ContactPanel : public QDialog
21{
22 Q_OBJECT
23
24public:
25 explicit ContactPanel(QWidget *parent = 0);
26 ~ContactPanel();
27
28private:
29 Ui::ContactPanel *ui;
30};
31
32#endif // CONTACTPANEL_H