diff --git a/src/sound/allegro_s.h b/src/sound/allegro_s.h --- a/src/sound/allegro_s.h +++ b/src/sound/allegro_s.h @@ -14,6 +14,7 @@ #include "sound_driver.hpp" +/** Implementation of the allegro sound driver. */ class SoundDriver_Allegro: public SoundDriver { public: /* virtual */ const char *Start(const char * const *param); @@ -24,6 +25,7 @@ public: /* virtual */ const char *GetName() const { return "allegro"; } }; +/** Factory for the allegro sound driver. */ class FSoundDriver_Allegro: public SoundDriverFactory { public: static const int priority = 4;