~ubuntu-branches/debian/jessie/acoustid-fingerprinter/jessie

« back to all changes in this revision

Viewing changes to main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2011-05-12 19:54:52 UTC
  • Revision ID: james.westby@ubuntu.com-20110512195452-bj6g545s1bx7edvc
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <QApplication>
 
2
#include "decoder.h"
 
3
#include "mainwindow.h"
 
4
 
 
5
int main(int argc, char **argv)
 
6
{
 
7
        Decoder::initialize();
 
8
        QApplication app(argc, argv);
 
9
        app.setOrganizationName("Acoustid");
 
10
        app.setOrganizationDomain("acoustid.org");
 
11
        app.setApplicationName("Fingerprinter");
 
12
        app.setApplicationVersion(VERSION);
 
13
        MainWindow window;
 
14
        window.show();
 
15
        return app.exec();
 
16
}