diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/llui/llclipboard.h | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-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.h | 18 |
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 | // | ||
42 | class LLClipboard | 40 | class LLClipboard |
43 | { | 41 | { |
44 | protected: | ||
45 | LLUUID mSourceID; | ||
46 | LLWString mString; | ||
47 | |||
48 | public: | 42 | public: |
49 | LLClipboard(); | 43 | LLClipboard(); |
50 | ~LLClipboard(); | 44 | ~LLClipboard(); |
51 | 45 | ||
52 | void copyFromSubstring(const LLWString ©_from, S32 pos, S32 len, const LLUUID& source_id = LLUUID::null ); | 46 | void copyFromSubstring(const LLWString ©_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); | 50 | private: |
51 | LLUUID mSourceID; | ||
52 | LLWString mString; | ||
57 | }; | 53 | }; |
58 | 54 | ||
59 | 55 | ||