DataConnectionVisualComponent.h 941 B

1234567891011121314151617181920212223242526272829303132
  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. #include <Components/Connections/ConnectionVisualComponent.h>
  10. namespace GraphCanvas
  11. {
  12. class DataConnectionVisualComponent
  13. : public ConnectionVisualComponent
  14. , public ConnectionNotificationBus::Handler
  15. {
  16. public:
  17. AZ_COMPONENT(DataConnectionVisualComponent, "{5016737C-59C4-4EE9-9B06-74E220833F03}", ConnectionVisualComponent);
  18. static void Reflect(AZ::ReflectContext* context);
  19. DataConnectionVisualComponent() = default;
  20. ~DataConnectionVisualComponent() = default;
  21. protected:
  22. void CreateConnectionVisual() override;
  23. private:
  24. DataConnectionVisualComponent(const DataConnectionVisualComponent &) = delete;
  25. };
  26. }