diff options
Diffstat (limited to 'indra/newview/llpreviewsound.h')
-rw-r--r-- | indra/newview/llpreviewsound.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/indra/newview/llpreviewsound.h b/indra/newview/llpreviewsound.h new file mode 100644 index 0000000000..dc19c37bb1 --- /dev/null +++ b/indra/newview/llpreviewsound.h @@ -0,0 +1,26 @@ +/** + * @file llpreviewsound.h + * @brief LLPreviewSound class definition + * + * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLPREVIEWSOUND_H +#define LL_LLPREVIEWSOUND_H + +#include "llpreview.h" + +class LLPreviewSound : public LLPreview +{ +public: + LLPreviewSound(const std::string& name, const LLRect& rect, const std::string& title, + const LLUUID& item_uuid, + const LLUUID& object_uuid = LLUUID::null); + + static void playSound( void* userdata ); + static void auditionSound( void* userdata ); + +}; + +#endif // LL_LLPREVIEWSOUND_H |