Cleaned up some doxygen warnings.

This commit is contained in:
Ward Fisher 2014-07-09 16:27:16 -06:00
parent 37c5338a86
commit 771b553126
6 changed files with 93 additions and 129 deletions

View File

@ -1819,18 +1819,6 @@ GENERATE_XML = NO
XML_OUTPUT = xml XML_OUTPUT = xml
# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
# validating XML parser to check the syntax of the XML files.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_SCHEMA =
# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
# validating XML parser to check the syntax of the XML files.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_DTD =
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to # listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size # the XML output. Note that enabling this will significantly increase the size

View File

@ -1857,18 +1857,6 @@ GENERATE_XML = NO
XML_OUTPUT = xml XML_OUTPUT = xml
# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
# validating XML parser to check the syntax of the XML files.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_SCHEMA =
# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
# validating XML parser to check the syntax of the XML files.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_DTD =
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to # listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size # the XML output. Note that enabling this will significantly increase the size

View File

@ -1830,18 +1830,6 @@ GENERATE_XML = NO
XML_OUTPUT = xml XML_OUTPUT = xml
# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
# validating XML parser to check the syntax of the XML files.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_SCHEMA =
# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
# validating XML parser to check the syntax of the XML files.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_DTD =
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to # listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size # the XML output. Note that enabling this will significantly increase the size

View File

@ -5,7 +5,7 @@ Documentation of error handling.
\tableofcontents \tableofcontents
\section error_handling Error Handling \section sec_error_handling Error Handling
Each netCDF function returns an integer status value. Non-zero values Each netCDF function returns an integer status value. Non-zero values
indicate error. indicate error.

View File

@ -127,7 +127,7 @@ attributes, or variables that refer to other attributes or variables,
provides a flexible mechanism for representing some kinds of complex provides a flexible mechanism for representing some kinds of complex
structures in netCDF datasets. structures in netCDF datasets.
\section user_defined_types NetCDF-4 User Defined Data Types \section nc4_user_defined_types NetCDF-4 User Defined Data Types
NetCDF supported six data types through version 3.6.0 (char, byte, NetCDF supported six data types through version 3.6.0 (char, byte,
short, int, float, and double). Starting with version 4.0, many new short, int, float, and double). Starting with version 4.0, many new
@ -165,7 +165,7 @@ nc_put_var1()/nc_get_var1(), nc_put_vara()/nc_get_vara(), or
nc_put_vars()/nc_get_vars() functons to access attribute and variable nc_put_vars()/nc_get_vars() functons to access attribute and variable
data of user defined type. data of user defined type.
\subsection compound_types Compound Types \subsection types_compound_types Compound Types
Compound types allow the user to combine atomic and user-defined types Compound types allow the user to combine atomic and user-defined types
into C-like structs. Since users defined types may be used within a into C-like structs. Since users defined types may be used within a
@ -212,7 +212,7 @@ and pointers to the data, rather than the actual data.
For more information on creating and using variable length arrays, see For more information on creating and using variable length arrays, see
Variable Length Arrays in The NetCDF C Interface Guide. Variable Length Arrays in The NetCDF C Interface Guide.
\subsection opaque_types Opaque Types \subsection types_opaque_types Opaque Types
Opaque types allow the user to store arrays of data blobs of a fixed size. Opaque types allow the user to store arrays of data blobs of a fixed size.