cae  0.0.0
Cross-API graphics engine
Loading...
Searching...
No Matches
AAudio.hpp
Go to the documentation of this file.
1///
2/// @file IAudio.hpp
3/// @brief This file contains the audio abstract class
4/// @namespace cae
5///
6
7#pragma once
8
10
11namespace cae
12{
13
14 ///
15 /// @interface AAudio
16 /// @brief Abstract class for audio
17 /// @namespace cae
18 ///
19 class AAudio : public IAudio
20 {
21
22 public:
23 ~AAudio() override = default;
24
25 }; // interface AAudio
26
27} // namespace cae
This file contains the audio abstract class.
Abstract class for audio.
Definition AAudio.hpp:20
~AAudio() override=default
Interface for audio.
Definition IAudio.hpp:20