emilib
al_lib_fwd.hpp
1 // By Emil Ernerfeldt 2012-2016
2 // LICENSE:
3 // This software is dual-licensed to the public domain and under the following
4 // license: you are granted a perpetual, irrevocable license to copy, modify,
5 // publish, and distribute this file as you see fit.
6 // Forward declarations for things in al_lib.hpp.
7 #pragma once
8 
9 #include <memory>
10 
11 namespace al {
12 
13 class Sound;
14 using Sound_SP = std::shared_ptr<Sound>;
15 
16 class Source;
17 using Source_SP = std::shared_ptr<Source>;
18 
19 } // namespace al
Definition: al_lib.hpp:19