blob: aaa9a5328f233605dae5302bcc98f3886fe26a96 (
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
|
/**
* @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
|