1 #ifndef BLANK_AUDIO_SOUND_HPP_
2 #define BLANK_AUDIO_SOUND_HPP_
13 explicit Sound(const char *);
17 Sound &operator =(Sound &&);
19 Sound(const Sound &) = delete;
20 Sound &operator =(const Sound &) = delete;
23 void Bind(ALuint src) const;
25 /// full duration in milliseconds
26 int Duration() const noexcept { return duration; }