diff options
author | McCabe Maxsted | 2009-11-09 17:36:58 -0700 |
---|---|---|
committer | McCabe Maxsted | 2009-11-09 17:36:58 -0700 |
commit | 8af226efd89b2f2190555ce578d4e7f1cde99f32 (patch) | |
tree | c4c75ffe4f8d76956f4b2d5f2a8469babf79b0b7 /linden/indra/newview/primbackup.h | |
parent | Attachment size limits need to use the max prim size set in llmanipscale (diff) | |
download | meta-impy-8af226efd89b2f2190555ce578d4e7f1cde99f32.zip meta-impy-8af226efd89b2f2190555ce578d4e7f1cde99f32.tar.gz meta-impy-8af226efd89b2f2190555ce578d4e7f1cde99f32.tar.bz2 meta-impy-8af226efd89b2f2190555ce578d4e7f1cde99f32.tar.xz |
Updated primbackup from latest meerkat svn (r246)
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/primbackup.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/primbackup.h b/linden/indra/newview/primbackup.h index cbd757a..7db26ec 100644 --- a/linden/indra/newview/primbackup.h +++ b/linden/indra/newview/primbackup.h | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | #define LL_GRID_PERMISSIONS 1 | 4 | #define LL_GRID_PERMISSIONS 1 |
5 | 5 | ||
6 | enum export_states {EXPORT_INIT,EXPORT_STRUCTURE,EXPORT_TEXTURES,EXPORT_LLSD,EXPORT_DONE}; | 6 | //enum export_states {EXPORT_INIT,EXPORT_STRUCTURE,EXPORT_TEXTURES,EXPORT_LLSD,EXPORT_DONE}; |
7 | 7 | ||
8 | class primbackup : public LLFloater | 8 | class primbackup : public LLFloater |
9 | 9 | ||
@@ -13,7 +13,7 @@ class primbackup : public LLFloater | |||
13 | enum export_states export_state; | 13 | enum export_states export_state; |
14 | 14 | ||
15 | //Export idle callback | 15 | //Export idle callback |
16 | static void exportworker(void *userdata); | 16 | //static void exportworker(void *userdata); |
17 | 17 | ||
18 | //Static accessor | 18 | //Static accessor |
19 | static primbackup* getInstance(); | 19 | static primbackup* getInstance(); |
@@ -79,6 +79,8 @@ private: | |||
79 | void updateimportnumbers(); | 79 | void updateimportnumbers(); |
80 | void updateexportnumbers(); | 80 | void updateexportnumbers(); |
81 | 81 | ||
82 | //Convert a selection list of objects to HPA | ||
83 | LLXMLNode *prims_to_xml(LLViewerObject::child_list_t child_list); | ||
82 | //Convert a selection list of objects to LLSD | 84 | //Convert a selection list of objects to LLSD |
83 | LLSD prims_to_llsd(LLViewerObject::child_list_t child_list); | 85 | LLSD prims_to_llsd(LLViewerObject::child_list_t child_list); |
84 | 86 | ||
@@ -117,6 +119,8 @@ private: | |||
117 | LLSD this_group; | 119 | LLSD this_group; |
118 | LLUUID expecting_update; | 120 | LLUUID expecting_update; |
119 | 121 | ||
122 | LLXMLNodePtr xml; | ||
123 | |||
120 | //working llsd itterators for objects and linksets | 124 | //working llsd itterators for objects and linksets |
121 | LLSD::map_const_iterator prim_import_iter; | 125 | LLSD::map_const_iterator prim_import_iter; |
122 | LLSD::array_const_iterator group_prim_import_iter; | 126 | LLSD::array_const_iterator group_prim_import_iter; |
@@ -131,4 +135,3 @@ private: | |||
131 | LLQuaternion agent_rot; | 135 | LLQuaternion agent_rot; |
132 | 136 | ||
133 | }; | 137 | }; |
134 | |||