diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llfloaterbuycurrency.h |
Print done when done.
Diffstat (limited to 'indra/newview/llfloaterbuycurrency.h')
-rw-r--r-- | indra/newview/llfloaterbuycurrency.h | 28 |
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 |