summaryrefslogtreecommitdiffstats
path: root/include/xmloff/xmlictxt.hxx
diff options
context:
space:
mode:
authorMaxime de Roucy <mderoucy@linagora.com>2013-04-04 18:05:24 +0200
committerCaolán McNamara <caolanm@redhat.com>2013-04-25 08:55:10 +0000
commitf215e634de4926def396d8442b8b15a912cb69e8 (patch)
treebcfb1be124987d29bcd620647165ba9be60e3ce3 /include/xmloff/xmlictxt.hxx
parentFix generation of cli_types_bridgetest.dll after gbuild'ification (diff)
downloadcore-f215e634de4926def396d8442b8b15a912cb69e8.tar.gz
core-f215e634de4926def396d8442b8b15a912cb69e8.zip
comments and code reformat
Change-Id: Ib4e45cb85c9e5e5ffa6476c939300c6795412b1a Reviewed-on: https://gerrit.libreoffice.org/3582 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/xmloff/xmlictxt.hxx')
-rw-r--r--include/xmloff/xmlictxt.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/include/xmloff/xmlictxt.hxx b/include/xmloff/xmlictxt.hxx
index 37903e4b4f8a..2ed80c1ec7cf 100644
--- a/include/xmloff/xmlictxt.hxx
+++ b/include/xmloff/xmlictxt.hxx
@@ -58,37 +58,37 @@ public:
sal_uInt16 GetPrefix() const { return mnPrefix; }
const OUString& GetLocalName() const { return maLocalName; }
- // A contexts constructor does anything that is required if an element
- // starts. Namespace processing has been done already.
- // Note that virtual methods cannot be used inside constructors. Use
- // StartElement instead if this is required.
+ /** A contexts constructor does anything that is required if an element
+ * starts. Namespace processing has been done already.
+ * Note that virtual methods cannot be used inside constructors. Use
+ * StartElement instead if this is required. */
SvXMLImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName );
- // A contexts destructor does anything that is required if an element
- // ends. By default, nothing is done.
- // Note that virtual methods cannot be used inside destructors. Use
- // EndElement instead if this is required.
+ /** A contexts destructor does anything that is required if an element
+ * ends. By default, nothing is done.
+ * Note that virtual methods cannot be used inside destructors. Use
+ * EndElement instead if this is required. */
virtual ~SvXMLImportContext();
- // Create a children element context. By default, the import's
- // CreateContext method is called to create a new default context.
+ /** Create a children element context. By default, the import's
+ * CreateContext method is called to create a new default context. */
virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
const OUString& rLocalName,
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
- // StartElement is called after a context has been constructed and
- // before a elements context is parsed. It may be used for actions that
- // require virtual methods. The default is to do nothing.
+ /** StartElement is called after a context has been constructed and
+ * before a elements context is parsed. It may be used for actions that
+ * require virtual methods. The default is to do nothing. */
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
- // EndElement is called before a context will be destructed, but
- // after a elements context has been parsed. It may be used for actions
- // that require virtual methods. The default is to do nothing.
+ /** EndElement is called before a context will be destructed, but
+ * after a elements context has been parsed. It may be used for actions
+ * that require virtual methods. The default is to do nothing. */
virtual void EndElement();
- // This method is called for all characters that are contained in the
- // current element. The default is to ignore them.
+ /** This method is called for all characters that are contained in the
+ * current element. The default is to ignore them. */
virtual void Characters( const OUString& rChars );
};