blob: 1c3e37e0bb34887e6d268814c87e8171d4b9b2c9 [file] [log] [blame]
Yingdi Yu04842232013-10-23 14:03:09 -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#include "chatdialog.h"
12#include "ui_chatdialog.h"
13
14using namespace std;
15using namespace ndn;
16
17ChatDialog::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
28ChatDialog::~ChatDialog()
29{
30 delete ui;
31}
32
33void
34ChatDialog::sendInvitation()
35{
36
37}
38
39#if WAF
40#include "chatdialog.moc"
41#include "chatdialog.cpp.moc"
42#endif