summaryrefslogtreecommitdiff
path: root/scripting/source/storage/ScriptElement.hxx
diff options
context:
space:
mode:
authorLaszlo Kovacs <lkovacs@openoffice.org>2002-09-23 13:08:29 +0000
committerLaszlo Kovacs <lkovacs@openoffice.org>2002-09-23 13:08:29 +0000
commitf302b530d8d26546a137f7b77c73185a60d29238 (patch)
treea5c248f5a6bd796fd6cc5d4665ad591525acb380 /scripting/source/storage/ScriptElement.hxx
parent5079106994689cc1bc361f19bee041b18f7b4e7b (diff)
Comments and header guards added
Diffstat (limited to 'scripting/source/storage/ScriptElement.hxx')
-rw-r--r--scripting/source/storage/ScriptElement.hxx18
1 files changed, 13 insertions, 5 deletions
diff --git a/scripting/source/storage/ScriptElement.hxx b/scripting/source/storage/ScriptElement.hxx
index 7777b8746806..866dbe609648 100644
--- a/scripting/source/storage/ScriptElement.hxx
+++ b/scripting/source/storage/ScriptElement.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ScriptElement.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: dfoster $ $Date: 2002-09-20 14:33:48 $
+ * last change: $Author: lkovacs $ $Date: 2002-09-23 14:08:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -58,12 +58,14 @@
*
*
************************************************************************/
-#ifndef _SCRIPTING_STORAGE_METADATA_ELEMENT_HXX_
-#define _SCRIPTING_STORAGE_METADATA_ELEMENT_HXX_
+#ifndef _SCRIPT_FRAMEWORK_STORAGE_SCRIPT_ELEMENT_HXX_
+#define _SCRIPT_FRAMEWORK_STORAGE_SCRIPT_ELEMENT_HXX_
#include <osl/mutex.hxx>
+#ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_FRAMEWORK_STORAGE_SCRIPTIMPLINFO_HPP_
#include <drafts/com/sun/star/script/framework/storage/ScriptImplInfo.hpp>
+#endif
#include "XMLElement.hxx"
@@ -76,7 +78,13 @@ private:
drafts::com::sun::star::script::framework::storage::ScriptImplInfo m_sII;
public:
- explicit ScriptElement(drafts::com::sun::star::script::framework::storage::ScriptImplInfo &);
+ /**
+ Construct a ScriptElement from a ScriptImplInfo object
+
+ @param sII
+ the ScriptImplInfoObject
+ */
+ explicit ScriptElement(drafts::com::sun::star::script::framework::storage::ScriptImplInfo & sII);
~ScriptElement() SAL_THROW (());
};