Initial commit of musik, my KDE4 simplest (and hopefully faster..)
[musik.git] / main.cpp
blob20c32ac36399fc72e40d68ba27fd05350641022a
1 // andrea diamantini - adjam7@gmail.com
2 // musik - simplest KDE4 audio player
4 #include <KApplication>
5 #include <KAboutData>
6 #include <KCmdLineArgs>
8 #include "musikclass.h"
10 int main (int argc, char *argv[])
12 KAboutData aboutData( "musik", "simplest (and hopefully faster) kde4 audio player",
13 ki18n("musik"), "0.0.1",
14 ki18n("simplest (and hopefully faster) kde4 audio player"),
15 KAboutData::License_GPL,
16 ki18n("Copyright (c) 2008 Andrea Diamantini") );
18 KCmdLineArgs::init( argc, argv, &aboutData );
19 KApplication app;
21 Musik *window = new Musik();
22 window->show();
24 return app.exec();