summaryrefslogtreecommitdiff
path: root/indra/llprimitive/llvolumexml.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llprimitive/llvolumexml.h')
-rw-r--r--indra/llprimitive/llvolumexml.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/indra/llprimitive/llvolumexml.h b/indra/llprimitive/llvolumexml.h
new file mode 100644
index 0000000000..5d105f148a
--- /dev/null
+++ b/indra/llprimitive/llvolumexml.h
@@ -0,0 +1,27 @@
+/**
+ * @file llvolumexml.h
+ * @brief LLVolumeXml base class
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLVOLUMEXML_H
+#define LL_LLVOLUMEXML_H
+
+#include "llvolume.h"
+#include "llxmlnode.h"
+
+// wrapper class for some volume/message functions
+class LLVolumeXml
+{
+public:
+ static LLXMLNode* exportProfileParams(const LLProfileParams* params);
+
+ static LLXMLNode* exportPathParams(const LLPathParams* params);
+
+ static LLXMLNode* exportVolumeParams(const LLVolumeParams* params);
+};
+
+#endif // LL_LLVOLUMEXML_H
+