diff options
author | Chris Robinson <[email protected]> | 2018-12-25 11:09:41 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-25 11:09:41 -0800 |
commit | 208ea76922e8d69dc9ad93cbb0cf43634d9782a4 (patch) | |
tree | d65de40914324b72d72d569dc3dac20d5fc7dbe8 /Alc/backends/base.h | |
parent | 8336de665306e3d1669b9af675b3cf39f0bcbc4a (diff) |
Cleanup some includes
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r-- | Alc/backends/base.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Alc/backends/base.h b/Alc/backends/base.h index f7be5cd0..15622967 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -1,12 +1,14 @@ -#ifndef AL_BACKENDS_BASE_H -#define AL_BACKENDS_BASE_H - -#include "alMain.h" +#ifndef ALC_BACKENDS_BASE_H +#define ALC_BACKENDS_BASE_H #include <chrono> #include <string> #include <mutex> +#include "alMain.h" +#include "polymorphism.h" + + struct ClockLatency { std::chrono::nanoseconds ClockTime; std::chrono::nanoseconds Latency; @@ -119,4 +121,4 @@ struct BackendFactory { virtual ALCbackend *createBackend(ALCdevice *device, ALCbackend_Type type) = 0; }; -#endif /* AL_BACKENDS_BASE_H */ +#endif /* ALC_BACKENDS_BASE_H */ |