Yingdi Yu | 9e0dc29 | 2013-10-10 11:39:45 -0700 | [diff] [blame^] | 1 | /* -*- 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 | |
Yingdi Yu | def9061 | 2013-10-09 22:34:42 -0700 | [diff] [blame] | 11 | #include "contactpanel.h" |
| 12 | #include "ui_contactpanel.h" |
| 13 | |
| 14 | ContactPanel::ContactPanel(QWidget *parent) : |
| 15 | QDialog(parent), |
| 16 | ui(new Ui::ContactPanel) |
| 17 | { |
| 18 | ui->setupUi(this); |
| 19 | } |
| 20 | |
| 21 | ContactPanel::~ContactPanel() |
| 22 | { |
| 23 | delete ui; |
| 24 | } |
Yingdi Yu | 9e0dc29 | 2013-10-10 11:39:45 -0700 | [diff] [blame^] | 25 | |
| 26 | |
| 27 | #if WAF |
| 28 | #include "contactpanel.moc" |
| 29 | #include "contactpanel.cpp.moc" |
| 30 | #endif |