summaryrefslogtreecommitdiffstats
path: root/src/dom/util
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2011-10-25 07:45:35 +0000
committerJon A. Cruz <jon@joncruz.org>2011-10-25 07:45:35 +0000
commit1a5d5d8a7e796035bc70d5c727d4d901dda50726 (patch)
treee15866e9b83d8948e6f7329193bbe4b6eefaa840 /src/dom/util
parentcppcheck (diff)
downloadinkscape-1a5d5d8a7e796035bc70d5c727d4d901dda50726.tar.gz
inkscape-1a5d5d8a7e796035bc70d5c727d4d901dda50726.zip
Cleanup pass on documentation that was dumping garbage into doxygen output.
(bzr r10696)
Diffstat (limited to 'src/dom/util')
-rw-r--r--src/dom/util/digest.h10
-rw-r--r--src/dom/util/thread.h11
-rw-r--r--src/dom/util/ziptool.h9
3 files changed, 15 insertions, 15 deletions
diff --git a/src/dom/util/digest.h b/src/dom/util/digest.h
index 8c193420f..fed5b7e86 100644
--- a/src/dom/util/digest.h
+++ b/src/dom/util/digest.h
@@ -1,8 +1,6 @@
-#ifndef __DIGEST_H__
-#define __DIGEST_H__
-/**
- * Secure Hashing Tool
- *
+#ifndef SEEN_DIGEST_H
+#define SEEN_DIGEST_H
+/*
*
* Author:
* Bob Jamison
@@ -25,7 +23,7 @@
*/
/**
- *
+ * @file
* This base class and its subclasses provide an easy API for providing
* several different types of secure hashing functions for whatever use
* a developer might need. This is not intended as a high-performance
diff --git a/src/dom/util/thread.h b/src/dom/util/thread.h
index dfad6d9b3..1408cd78f 100644
--- a/src/dom/util/thread.h
+++ b/src/dom/util/thread.h
@@ -1,5 +1,5 @@
-#ifndef __DOM_THREAD_H__
-#define __DOM_THREAD_H__
+#ifndef SEEN_DOM_THREAD_H
+#define SEEN_DOM_THREAD_H
/**
* Phoebe DOM Implementation.
*
@@ -8,7 +8,8 @@
* which are provided for reference. Most important is this one:
*
* http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/idl-definitions.html
- *
+ */
+/*
* Authors:
* Bob Jamison
*
@@ -29,7 +30,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-/**
+/*
* Thread wrapper. This provides a platform-independent thread
* class for IO and testing.
*
@@ -147,7 +148,7 @@ private:
-#endif /* __DOM_THREAD_H__ */
+#endif // SEEN_DOM_THREAD_H
//#########################################################################
//# E N D O F F I L E
//#########################################################################
diff --git a/src/dom/util/ziptool.h b/src/dom/util/ziptool.h
index 6cef266cf..47e669962 100644
--- a/src/dom/util/ziptool.h
+++ b/src/dom/util/ziptool.h
@@ -1,5 +1,5 @@
-#ifndef __ZIPTOOL_H__
-#define __ZIPTOOL_H__
+#ifndef SEEN_ZIPTOOL_H
+#define SEEN_ZIPTOOL_H
/**
* This is intended to be a standalone, reduced capability
* implementation of Gzip and Zip functionality. Its
@@ -11,7 +11,8 @@
* one-at-a-time tasks. What you get in return is the ability
* to drop these files into your project and remove the dependencies
* on ZLib and Info-Zip. Enjoy.
- *
+ */
+/*
* Authors:
* Bob Jamison
*
@@ -559,7 +560,7 @@ private:
-#endif /* __ZIPTOOL_H__ */
+#endif // SEEN_ZIPTOOL_H
//########################################################################