ccAboutDialog.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef CCABOUTDIALOG_H
  2. #define CCABOUTDIALOG_H
  3. //##########################################################################
  4. //# #
  5. //# CLOUDCOMPARE #
  6. //# #
  7. //# This program 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; version 2 or later of the License. #
  10. //# #
  11. //# This program is distributed in the hope that it will be useful, #
  12. //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
  13. //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  14. //# GNU General Public License for more details. #
  15. //# #
  16. //# COPYRIGHT: CloudCompare project #
  17. //# #
  18. //##########################################################################
  19. #include <QDialog>
  20. namespace Ui {
  21. class AboutDialog;
  22. }
  23. class ccAboutDialog : public QDialog
  24. {
  25. Q_OBJECT
  26. public:
  27. ccAboutDialog(QWidget *parent = nullptr);
  28. ~ccAboutDialog();
  29. private:
  30. Ui::AboutDialog *mUI;
  31. };
  32. #endif // CCABOUTDIALOG_H