tools/templates/main.cpp
author sheepluva
Tue, 18 Oct 2011 14:28:50 +0200
changeset 6147 b4d7d8d62feb
parent 359 59fbfc65fbda
permissions -rw-r--r--
feature-pimpin'-up the chat input line in frontend: ESC key will clear input TAB key will expand names and commands

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}