summaryrefslogtreecommitdiffstats
path: root/src/xml/pi-node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml/pi-node.h')
-rw-r--r--src/xml/pi-node.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/xml/pi-node.h b/src/xml/pi-node.h
index 502c5cd71..4aa1f840b 100644
--- a/src/xml/pi-node.h
+++ b/src/xml/pi-node.h
@@ -1,7 +1,7 @@
-/*
- * Inkscape::XML::PINode - simple XML comment implementation
- *
- * Copyright 2004-2005 MenTaLguY <mental@rydia.net>
+/** @file
+ * @brief Processing instruction node implementation
+ */
+/* Copyright 2004-2005 MenTaLguY <mental@rydia.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -9,7 +9,6 @@
* of the License, or (at your option) any later version.
*
* See the file COPYING for details.
- *
*/
#ifndef SEEN_INKSCAPE_XML_PI_NODE_H
@@ -22,6 +21,9 @@ namespace Inkscape {
namespace XML {
+/**
+ * @brief Processing instruction node, e.g. &lt;?xml version="1.0" encoding="utf-8" standalone="no"?&gt;
+ */
struct PINode : public SimpleNode {
PINode(GQuark target, Util::ptr_shared<char> content, Document *doc)
: SimpleNode(target, doc)