IAudioConnection.h 772 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 <ACETypes.h>
  10. namespace AudioControls
  11. {
  12. //-------------------------------------------------------------------------------------------//
  13. class IAudioConnection
  14. {
  15. public:
  16. IAudioConnection(CID id)
  17. : m_id(id)
  18. {
  19. }
  20. virtual ~IAudioConnection() {}
  21. CID GetID() const
  22. {
  23. return m_id;
  24. }
  25. virtual bool HasProperties()
  26. {
  27. return false;
  28. }
  29. private:
  30. CID m_id;
  31. };
  32. } // namespace AudioControls