/**************************************************************************** * * * Copyright (C) 2005 Michael Buesch * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License version 2 * * as published by the Free Software Foundation. * * * * 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. Additionally a copy of the * * GNU General Public License is available here: * * http://passwordmanager.sourceforge.net/gplv2.txt * * http://www.gnu.org/licenses/gpl.txt * * * ****************************************************************************/ #include #include "regtrack.h" #include int main(int argc, char **argv) { int res; std::cout << "regtrack version " VERSION << std::endl << "Copyright (C) 2005 " "Michael Buesch " << std::endl << "License: GNU General Public License v2" << std::endl; QApplication app(argc, argv); RegTrack regtrack; app.setMainWidget(®track); regtrack.show(); res = app.exec(); regtrack.saveFile(); return res; }