aboutdialog.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. = StarPU-Top for StarPU =
  3. Copyright (C) 2011
  4. William Braik
  5. Yann Courtois
  6. Jean-Marie Couteyen
  7. Anthony Roy
  8. This library is free software; you can redistribute it and/or
  9. modify it under the terms of the GNU Lesser General Public
  10. License as published by the Free Software Foundation; either
  11. version 2.1 of the License, or (at your option) any later version.
  12. This library 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 GNU
  15. Lesser General Public License for more details.
  16. You should have received a copy of the GNU Lesser General Public
  17. License along with this library; if not, write to the Free Software
  18. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef ABOUTDIALOG_H
  21. #define ABOUTDIALOG_H
  22. #include <QDialog>
  23. namespace Ui {
  24. class AboutDialog;
  25. }
  26. class AboutDialog : public QDialog
  27. {
  28. Q_OBJECT
  29. public:
  30. explicit AboutDialog(QWidget *parent = 0);
  31. ~AboutDialog();
  32. private:
  33. Ui::AboutDialog *ui;
  34. };
  35. #endif // ABOUTDIALOG_H