summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterbuyland.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloaterbuyland.h')
-rw-r--r--indra/newview/llfloaterbuyland.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/indra/newview/llfloaterbuyland.h b/indra/newview/llfloaterbuyland.h
new file mode 100644
index 0000000000..092c95802a
--- /dev/null
+++ b/indra/newview/llfloaterbuyland.h
@@ -0,0 +1,28 @@
+/**
+ * @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);
+};
+
+#endif