blob: f4742be230f9588865b34fb73ca9bc8217db23ee [file] [log] [blame]
Yingdi Yu614db142013-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
Yingdi Yu767d2ac2013-10-09 15:16:11 -070011#include "chronochat.h"
12#include "ui_chronochat.h"
13
14ChronoChat::ChronoChat(QWidget *parent) :
15 QDialog(parent),
16 ui(new Ui::ChronoChat)
17{
18 ui->setupUi(this);
19}
20
21ChronoChat::~ChronoChat()
22{
23 delete ui;
24}