aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llinventoryclipboard.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llinventoryclipboard.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/newview/llinventoryclipboard.h b/linden/indra/newview/llinventoryclipboard.h
index 7a2cf15..99e8450 100644
--- a/linden/indra/newview/llinventoryclipboard.h
+++ b/linden/indra/newview/llinventoryclipboard.h
@@ -54,6 +54,8 @@ public:
54 // this method adds to the current list. 54 // this method adds to the current list.
55 void add(const LLUUID& object); 55 void add(const LLUUID& object);
56 56
57 void addCut(const LLUUID& object);
58
57 // this stores a single inventory object 59 // this stores a single inventory object
58 void store(const LLUUID& object); 60 void store(const LLUUID& object);
59 61
@@ -64,6 +66,10 @@ public:
64 // into the array provided. 66 // into the array provided.
65 void retrieve(LLDynamicArray<LLUUID>& inventory_objects) const; 67 void retrieve(LLDynamicArray<LLUUID>& inventory_objects) const;
66 68
69 // this method gets the objects in the clipboard by copying them
70 // into the array provided.
71 void retrieveCuts(LLDynamicArray<LLUUID>& inventory_objects) const;
72
67 // this method empties out the clipboard 73 // this method empties out the clipboard
68 void reset(); 74 void reset();
69 75
@@ -74,6 +80,7 @@ protected:
74 static LLInventoryClipboard sInstance; 80 static LLInventoryClipboard sInstance;
75 81
76 LLDynamicArray<LLUUID> mObjects; 82 LLDynamicArray<LLUUID> mObjects;
83 LLDynamicArray<LLUUID> mCutObjects;
77 84
78public: 85public:
79 // please don't actually call these 86 // please don't actually call these