ccExportCoordToSFDlg.cpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #include "ccExportCoordToSFDlg.h"
  18. ccExportCoordToSFDlg::ccExportCoordToSFDlg(QWidget* parent/*=nullptr*/)
  19. : QDialog(parent, Qt::Tool)
  20. , Ui::ExportCoordToSFDlg()
  21. {
  22. setupUi(this);
  23. }
  24. bool ccExportCoordToSFDlg::exportX() const
  25. {
  26. return xCheckBox->isChecked();
  27. }
  28. bool ccExportCoordToSFDlg::exportY() const
  29. {
  30. return yCheckBox->isChecked();
  31. }
  32. bool ccExportCoordToSFDlg::exportZ() const
  33. {
  34. return zCheckBox->isChecked();
  35. }