summaryrefslogtreecommitdiffstats
path: root/src/AudioDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AudioDriver.hpp')
-rw-r--r--src/AudioDriver.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/AudioDriver.hpp b/src/AudioDriver.hpp
index 7e1e5a7..a1e1a33 100644
--- a/src/AudioDriver.hpp
+++ b/src/AudioDriver.hpp
@@ -21,6 +21,8 @@
#include <cstdint>
+namespace patchage {
+
/// Base class for drivers that work with an audio system
class AudioDriver : public Driver
{
@@ -45,4 +47,6 @@ public:
virtual uint32_t sample_rate() = 0;
};
+} // namespace patchage
+
#endif // PATCHAGE_AUDIODRIVER_HPP