Yingdi Yu | 0484223 | 2013-10-23 14:03:09 -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 | |
| 11 | #include "chatdialog.h" |
| 12 | #include "ui_chatdialog.h" |
| 13 | |
| 14 | using namespace std; |
| 15 | using namespace ndn; |
| 16 | |
| 17 | ChatDialog::ChatDialog(const Name& chatroomPrefix, |
| 18 | const Name& localPrefix, |
| 19 | QWidget *parent) |
| 20 | : QDialog(parent) |
| 21 | , m_chatroomPrefix(chatroomPrefix) |
| 22 | , m_localPrefix(localPrefix) |
| 23 | , ui(new Ui::ChatDialog) |
| 24 | { |
| 25 | ui->setupUi(this); |
| 26 | } |
| 27 | |
| 28 | ChatDialog::~ChatDialog() |
| 29 | { |
| 30 | delete ui; |
| 31 | } |
| 32 | |
| 33 | void |
| 34 | ChatDialog::sendInvitation() |
| 35 | { |
| 36 | |
| 37 | } |
| 38 | |
| 39 | #if WAF |
| 40 | #include "chatdialog.moc" |
| 41 | #include "chatdialog.cpp.moc" |
| 42 | #endif |