aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterclassified.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterclassified.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/linden/indra/newview/llfloaterclassified.h b/linden/indra/newview/llfloaterclassified.h
new file mode 100644
index 0000000..6cdc77b
--- /dev/null
+++ b/linden/indra/newview/llfloaterclassified.h
@@ -0,0 +1,54 @@
1/**
2 * @file llfloaterclassified.h
3 * @brief LLFloaterClassifiedInfo class declaration
4 *
5 * $LicenseInfo:firstyear=2002&license=internal$
6 *
7 * Copyright (c) 2002-2007, Linden Research, Inc.
8 *
9 * The following source code is PROPRIETARY AND CONFIDENTIAL. Use of
10 * this source code is governed by the Linden Lab Source Code Disclosure
11 * Agreement ("Agreement") previously entered between you and Linden
12 * Lab. By accessing, using, copying, modifying or distributing this
13 * software, you acknowledge that you have been informed of your
14 * obligations under the Agreement and agree to abide by those obligations.
15 *
16 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
17 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
18 * COMPLETENESS OR PERFORMANCE.
19 * $/LicenseInfo$
20 */
21
22/**
23* Classified information as shown in a floating window from a secondlife:// url.
24* Just a wrapper for LLPanelClassified.
25*/
26
27
28#ifndef LL_FLOATERCLASSIFIED_H
29#define LL_FLOATERCLASSIFIED_H
30
31#include "llfloater.h"
32
33class LLPanelClassified;
34
35class LLFloaterClassifiedInfo : LLFloater
36{
37public:
38 LLFloaterClassifiedInfo(const std::string& name, const LLUUID &id );
39 virtual ~LLFloaterClassifiedInfo();
40
41 void displayClassifiedInfo(const LLUUID& classified_id);
42
43 static LLFloaterClassifiedInfo* show(const LLUUID& classified_id);
44
45 static void* createClassifiedDetail(void* userdata);
46
47private:
48
49 LLPanelClassified* mClassifiedPanel;
50 LLUUID mClassifiedID;
51
52};
53
54#endif // LL_FLOATERCLASSIFIED_H