3
0

ImplementationManager.h 710 B

123456789101112131415161718192021222324252627282930313233343536
  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 <QObject>
  11. #endif
  12. namespace AudioControls
  13. {
  14. class IAudioSystemEditor;
  15. }
  16. //-----------------------------------------------------------------------------------------------//
  17. class CImplementationManager
  18. : public QObject
  19. {
  20. Q_OBJECT
  21. public:
  22. CImplementationManager();
  23. bool LoadImplementation();
  24. void Release();
  25. AudioControls::IAudioSystemEditor* GetImplementation();
  26. signals:
  27. void ImplementationChanged();
  28. };