summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterbuyland.h
blob: 22049d97a9748206f89aa993a81100a4e20deee7 (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
27
28
29
/** 
 * @file llfloaterbuyland.h
 * @brief LLFloaterBuyLand class definition
 *
 * Copyright (c) 2005-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#ifndef LL_LLFLOATERBUYLAND_H
#define LL_LLFLOATERBUYLAND_H

class LLParcel;
class LLViewerRegion;
class LLViewerTextEditor;

class LLFloaterBuyLand
{
public:
	static void buyLand(LLViewerRegion* region,
						LLParcel* parcel,
						bool is_for_group);
	static void updateCovenantText(const std::string& string, const LLUUID& asset_id);
	static void updateEstateName(const std::string& name);
	static void updateLastModified(const std::string& text);
	static void updateEstateOwnerName(const std::string& name);
	static BOOL isOpen();
};

#endif