aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llclipboard.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:34 -0500
committerJacek Antonelli2008-08-15 23:45:34 -0500
commitcd17687f01420952712a500107e0f93e7ab8d5f8 (patch)
treece48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/llui/llclipboard.h
parentSecond Life viewer sources 1.19.0.5 (diff)
downloadmeta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz
Second Life viewer sources 1.19.1.0
Diffstat (limited to 'linden/indra/llui/llclipboard.h')
-rw-r--r--linden/indra/llui/llclipboard.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/linden/indra/llui/llclipboard.h b/linden/indra/llui/llclipboard.h
index 82ea334..2ebc2de 100644
--- a/linden/indra/llui/llclipboard.h
+++ b/linden/indra/llui/llclipboard.h
@@ -36,24 +36,20 @@
36#include "llstring.h" 36#include "llstring.h"
37#include "lluuid.h" 37#include "lluuid.h"
38 38
39// 39
40// Classes
41//
42class LLClipboard 40class LLClipboard
43{ 41{
44protected:
45 LLUUID mSourceID;
46 LLWString mString;
47
48public: 42public:
49 LLClipboard(); 43 LLClipboard();
50 ~LLClipboard(); 44 ~LLClipboard();
51 45
52 void copyFromSubstring(const LLWString &copy_from, S32 pos, S32 len, const LLUUID& source_id = LLUUID::null ); 46 void copyFromSubstring(const LLWString &copy_from, S32 pos, S32 len, const LLUUID& source_id = LLUUID::null );
53 47 BOOL canPasteString() const;
54 48 const LLWString& getPasteWString(LLUUID* source_id = NULL);
55 BOOL canPasteString(); 49
56 LLWString getPasteWString(LLUUID* source_id = NULL); 50private:
51 LLUUID mSourceID;
52 LLWString mString;
57}; 53};
58 54
59 55