${Name}Widget.h 587 B

1234567891011121314151617181920212223242526272829
  1. // {BEGIN_LICENSE}
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. // {END_LICENSE}
  10. #pragma once
  11. #if !defined(Q_MOC_RUN)
  12. #include <AzToolsFramework/API/ToolsApplicationAPI.h>
  13. #include <QWidget>
  14. #endif
  15. namespace ${SanitizedCppName}
  16. {
  17. class ${SanitizedCppName}Widget
  18. : public QWidget
  19. {
  20. Q_OBJECT
  21. public:
  22. explicit ${SanitizedCppName}Widget(QWidget* parent = nullptr);
  23. };
  24. }