diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2011-10-25 07:45:35 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2011-10-25 07:45:35 +0000 |
| commit | 1a5d5d8a7e796035bc70d5c727d4d901dda50726 (patch) | |
| tree | e15866e9b83d8948e6f7329193bbe4b6eefaa840 /src/dom/io | |
| parent | cppcheck (diff) | |
| download | inkscape-1a5d5d8a7e796035bc70d5c727d4d901dda50726.tar.gz inkscape-1a5d5d8a7e796035bc70d5c727d4d901dda50726.zip | |
Cleanup pass on documentation that was dumping garbage into doxygen output.
(bzr r10696)
Diffstat (limited to 'src/dom/io')
| -rw-r--r-- | src/dom/io/base64stream.h | 10 | ||||
| -rw-r--r-- | src/dom/io/bufferstream.h | 10 | ||||
| -rw-r--r-- | src/dom/io/domstream.h | 10 | ||||
| -rw-r--r-- | src/dom/io/gzipstream.h | 9 | ||||
| -rw-r--r-- | src/dom/io/stringstream.h | 10 | ||||
| -rw-r--r-- | src/dom/io/uristream.h | 9 |
6 files changed, 34 insertions, 24 deletions
diff --git a/src/dom/io/base64stream.h b/src/dom/io/base64stream.h index c6d0ad35d..93bb5c7e5 100644 --- a/src/dom/io/base64stream.h +++ b/src/dom/io/base64stream.h @@ -1,7 +1,8 @@ -#ifndef __DOM_IO_BASE64STREAM_H__ -#define __DOM_IO_BASE64STREAM_H__ +#ifndef SEEN_DOM_IO_BASE64STREAM_H +#define SEEN_DOM_IO_BASE64STREAM_H /** + * @file * Phoebe DOM Implementation. * * Base64-enabled input and output streams @@ -11,7 +12,8 @@ * the implementation from the user. * * http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/idl-definitions.html - * + */ +/* * Authors: * Bob Jamison * @@ -143,4 +145,4 @@ private: } //namespace org -#endif /* __INKSCAPE_IO_BASE64STREAM_H__ */ +#endif // SEEN_DOM_IO_BASE64STREAM_H diff --git a/src/dom/io/bufferstream.h b/src/dom/io/bufferstream.h index bdf4eb2ab..9a36b30e2 100644 --- a/src/dom/io/bufferstream.h +++ b/src/dom/io/bufferstream.h @@ -1,6 +1,7 @@ -#ifndef __BUFFERSTREAM_H__ -#define __BUFFERSTREAM_H__ +#ifndef SEEN_BUFFERSTREAM_H +#define SEEN_BUFFERSTREAM_H /** + * @file * Phoebe DOM Implementation. * * This is a C++ approximation of the W3C DOM model, which follows @@ -8,7 +9,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 * @@ -130,4 +132,4 @@ private: -#endif /* __BUFFERSTREAM_H__ */ +#endif // SEEN_BUFFERSTREAM_H diff --git a/src/dom/io/domstream.h b/src/dom/io/domstream.h index 0c60aca7a..b2e308653 100644 --- a/src/dom/io/domstream.h +++ b/src/dom/io/domstream.h @@ -1,6 +1,7 @@ -#ifndef __DOMSTREAM_H__ -#define __DOMSTREAM_H__ +#ifndef SEEN_DOMSTREAM_H +#define SEEN_DOMSTREAM_H /** + * @file * Phoebe DOM Implementation. * * This is a C++ approximation of the W3C DOM model, which follows @@ -8,7 +9,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 * @@ -677,7 +679,7 @@ void pipeStream(InputStream &source, OutputStream &dest); } //namespace org -#endif /* __DOMSTREAM_H__ */ +#endif // SEEN_DOMSTREAM_H //######################################################################### //# E N D O F F I L E diff --git a/src/dom/io/gzipstream.h b/src/dom/io/gzipstream.h index ea0807f32..6e82c3531 100644 --- a/src/dom/io/gzipstream.h +++ b/src/dom/io/gzipstream.h @@ -1,12 +1,13 @@ -#ifndef __GZIPSTREAM_H__ -#define __GZIPSTREAM_H__ +#ifndef SEEN_GZIPSTREAM_H +#define SEEN_GZIPSTREAM_H /** * Zlib-enabled input and output streams * * This provides a simple mechanism for reading and * writing Gzip files. We use our own 'ZipTool' class * to accomplish this, avoiding a zlib dependency. - * + */ +/* * Authors: * Bob Jamison * @@ -122,4 +123,4 @@ private: } // namespace org -#endif /* __GZIPSTREAM_H__ */ +#endif // SEEN_GZIPSTREAM_H diff --git a/src/dom/io/stringstream.h b/src/dom/io/stringstream.h index 38aaf7235..f6ed89e65 100644 --- a/src/dom/io/stringstream.h +++ b/src/dom/io/stringstream.h @@ -1,6 +1,7 @@ -#ifndef __STRINGSTREAM_H__ -#define __STRINGSTREAM_H__ +#ifndef SEEN_STRINGSTREAM_H +#define SEEN_STRINGSTREAM_H /** + * @file * Phoebe DOM Implementation. * * This is a C++ approximation of the W3C DOM model, which follows @@ -8,7 +9,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 * @@ -126,4 +128,4 @@ private: -#endif /* __STRINGSTREAM_H__ */ +#endif // SEEN_STRINGSTREAM_H diff --git a/src/dom/io/uristream.h b/src/dom/io/uristream.h index a885726e4..8d60468a5 100644 --- a/src/dom/io/uristream.h +++ b/src/dom/io/uristream.h @@ -1,5 +1,5 @@ -#ifndef __URISTREAM_H__ -#define __URISTREAM_H__ +#ifndef SEEN_URISTREAM_H +#define SEEN_URISTREAM_H /** * Phoebe DOM Implementation. @@ -9,7 +9,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 * @@ -203,4 +204,4 @@ private: #########################################################################*/ -#endif /* __URISTREAM_H__ */ +#endif // SEEN_URISTREAM_H |
