summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterbuycurrency.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloaterbuycurrency.h')
-rw-r--r--indra/newview/llfloaterbuycurrency.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/indra/newview/llfloaterbuycurrency.h b/indra/newview/llfloaterbuycurrency.h
new file mode 100644
index 0000000000..aaa9a5328f
--- /dev/null
+++ b/indra/newview/llfloaterbuycurrency.h
@@ -0,0 +1,28 @@
+/**
+ * @file llfloaterbuycurrency.h
+ * @brief LLFloaterBuyCurrency class definition
+ *
+ * Copyright (c) 2005-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLFLOATERBUYCURRENCY_H
+#define LL_LLFLOATERBUYCURRENCY_H
+
+#include "stdtypes.h"
+
+class LLFloaterBuyCurrency
+{
+public:
+ static void buyCurrency();
+ static void buyCurrency(const std::string& name, S32 price);
+ /* name should be a noun phrase of the object or service being bought:
+ "That object costs"
+ "Trying to give"
+ "Uploading costs"
+ a space and the price will be appended
+ */
+};
+
+
+#endif