mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 07:38:54 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
27 lines
447 B
C++
27 lines
447 B
C++
#ifndef NW4R_SND_STRM_SOUND_HANDLE_H
|
|
#define NW4R_SND_STRM_SOUND_HANDLE_H
|
|
#include "nw4r/snd/snd_StrmSound.h"
|
|
#include "nw4r/types_nw4r.h"
|
|
#include "nw4r/ut.h"
|
|
|
|
|
|
namespace nw4r {
|
|
namespace snd {
|
|
|
|
class StrmSoundHandle : private ut::NonCopyable {
|
|
public:
|
|
void DetachSound();
|
|
|
|
bool IsAttachedSound() {
|
|
return mSound != NULL;
|
|
}
|
|
|
|
private:
|
|
detail::StrmSound *mSound; // at 0x0
|
|
};
|
|
|
|
} // namespace snd
|
|
} // namespace nw4r
|
|
|
|
#endif
|