diff options
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r-- | Alc/backends/base.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Alc/backends/base.h b/Alc/backends/base.h index 0fc7de38..0b9803a2 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -1,6 +1,7 @@ #ifndef ALC_BACKENDS_BASE_H #define ALC_BACKENDS_BASE_H +#include <memory> #include <chrono> #include <string> #include <mutex> @@ -53,7 +54,7 @@ struct BackendBase { BackendBase(ALCdevice *device) noexcept; virtual ~BackendBase(); }; - +using BackendPtr = std::unique_ptr<BackendBase>; enum class BackendType { Playback, @@ -70,7 +71,7 @@ struct BackendFactory { virtual void probe(DevProbe type, std::string *outnames) = 0; - virtual BackendBase *createBackend(ALCdevice *device, BackendType type) = 0; + virtual BackendPtr createBackend(ALCdevice *device, BackendType type) = 0; }; #endif /* ALC_BACKENDS_BASE_H */ |