blob: 5fcaaf28abb0460118a97cee80de3d22c41d4753 [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
11#include <QApplication>
12
13#include "chronochat.h"
14
15int main(int argc, char *argv[])
16{
17 QApplication app(argc, argv);
18
19// #ifdef __APPLE__
20// app.setWindowIcon(QIcon(":/demo.icns"));
21// #else
22// app.setWindowIcon(QIcon(":/images/icon_large.png"));
23// #endif
24
25 ChronoChat dialog;
26
27 dialog.show ();
28
29 return app.exec();
30}