| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | namespace al { |
| 4 | class AudioKeeper; |
| 5 | |
| 6 | class IUseAudioKeeper { |
| 7 | public: |
| 8 | virtual AudioKeeper* getAudioKeeper() const = 0; |
| 9 | }; |
| 10 | } // namespace al |
| 11 |
| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | namespace al { |
| 4 | class AudioKeeper; |
| 5 | |
| 6 | class IUseAudioKeeper { |
| 7 | public: |
| 8 | virtual AudioKeeper* getAudioKeeper() const = 0; |
| 9 | }; |
| 10 | } // namespace al |
| 11 |