IntroPage.h 597 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #if !defined(Q_MOC_RUN)
  10. #include <AzCore/Math/Crc.h>
  11. #include <AzCore/std/string/string.h>
  12. #include <QLabel>
  13. #include <QWizardPage>
  14. #endif
  15. namespace ROS2RobotImporter
  16. {
  17. class IntroPage : public QWizardPage
  18. {
  19. Q_OBJECT
  20. public:
  21. IntroPage(QWizard* parent);
  22. private:
  23. QLabel* m_label;
  24. };
  25. } // namespace ROS2RobotImporter