blob: dc19c37bb1122246b15d1bf022364d4328ce6056 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|