blob: bd9389c1fff9028d13d633b8c403f29286992b7e [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}
Yingdi Yuffb32632013-10-09 18:11:41 -070025
26#if WAF
27#include "chronochat.moc"
28#include "chronochat.cpp.moc"
29#endif