diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/llprimitive/llvolumexml.h |
Print done when done.
Diffstat (limited to 'indra/llprimitive/llvolumexml.h')
-rw-r--r-- | indra/llprimitive/llvolumexml.h | 27 |
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 + |