aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/base.h
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r--Alc/backends/base.h12
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 */