X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=unlock%2Fmain.cpp;fp=unlock%2Fmain.cpp;h=5e2f3c7699d382e3f5473995cf90fd4d358de81a;hb=dd14c9c23b06bbd3e5c83fdf660844aab089c747;hp=0000000000000000000000000000000000000000;hpb=e4668695f0533b93ba8e58f16fe93c7d712309ba;p=mnenc diff --git a/unlock/main.cpp b/unlock/main.cpp new file mode 100644 index 0000000..5e2f3c7 --- /dev/null +++ b/unlock/main.cpp @@ -0,0 +1,31 @@ +// main.cpp +// +// Copyright 2010 Micke Nordin +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +// MA 02110-1301, USA. + + +#include + #include "unlock.hpp" + +int main(int argc, char *argv[]) +{ + QApplication app(argc, argv); + Unlock *dialog = new Unlock; + + dialog->show(); + return app.exec(); +}