main.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * main.cpp
  3. * This file is part of ChronoCheckMate
  4. *
  5. * Copyright (C) 2010 - François Drouhard
  6. *
  7. * ChronoCheckMate is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * ChronoCheckMate is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with ChronoCheckMate; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301 USA
  21. */
  22. #include <QApplication>
  23. #include <QTime>
  24. #include "MaFenetre.h"
  25. #include "options.h"
  26. int main(int argc, char *argv[])
  27. {
  28. QApplication app(argc, argv);
  29. MaFenetre fenetre;
  30. fenetre.show();
  31. return app.exec();
  32. }