ccExportCoordToSFDlg.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //##########################################################################
  2. //# #
  3. //# CLOUDCOMPARE #
  4. //# #
  5. //# This program is free software; you can redistribute it and/or modify #
  6. //# it under the terms of the GNU General Public License as published by #
  7. //# the Free Software Foundation; version 2 or later of the License. #
  8. //# #
  9. //# This program is distributed in the hope that it will be useful, #
  10. //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
  11. //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  12. //# GNU General Public License for more details. #
  13. //# #
  14. //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
  15. //# #
  16. //##########################################################################
  17. #ifndef CC_EXPORT_COORD_TO_SF_DLG_HEADER
  18. #define CC_EXPORT_COORD_TO_SF_DLG_HEADER
  19. #include <ui_exportCoordToSFDlg.h>
  20. //! Dialog to choose which dimension(s) (X, Y or Z) should be exported as SF(s)
  21. class ccExportCoordToSFDlg : public QDialog, public Ui::ExportCoordToSFDlg
  22. {
  23. Q_OBJECT
  24. public:
  25. //! Default constructor
  26. explicit ccExportCoordToSFDlg(QWidget* parent = nullptr);
  27. //! Returns whether X dimension should be exported
  28. bool exportX() const;
  29. //! Returns whether Y dimension should be exported
  30. bool exportY() const;
  31. //! Returns whether Z dimension should be exported
  32. bool exportZ() const;
  33. };
  34. #endif //CC_EXPORT_COORD_TO_SF_DLG_HEADER