Commit 2ed43d4c authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.4.1-20050210

parent c00ba20b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.1-20050129
DOXYGEN Version 1.4.1-20050210

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (29 January 2005)
Dimitri van Heesch (10 February 2005)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.1_20050129
DOXYGEN Version 1.4.1_20050210

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (29 January 2005)
Dimitri van Heesch (dimitri@stack.nl) (10 February 2005)
+1 −1
Original line number Diff line number Diff line
1.4.1-20050129
1.4.1-20050210
+11 −6
Original line number Diff line number Diff line
@@ -1430,8 +1430,7 @@ void memcpy(void *dest, const void *src, size_t n);
  tag of doxygen's configuration file.

  If \<file-name\> itself is not unique for the set of example files specified
  by the 
  \ref cfg_example_path "EXAMPLE_PATH" tag, you can include part 
  by the \ref cfg_example_path "EXAMPLE_PATH" tag, you can include part 
  of the absolute path to disambiguate it.

  Using the \\include command is equivalent to inserting the file into 
@@ -1448,7 +1447,11 @@ void memcpy(void *dest, const void *src, size_t n);
  \ref cmdskipline "\\skipline", 
  and \\until commands.  

  \sa section \ref cmdexample "\\example" and \ref cmddontinclude "\\dontinclude".
  \note Doxygen's special commands do not work inside blocks of code. 
  It is allowed to nest C-style comments inside a code block though.

  \sa section \ref cmdexample "\\example", \ref cmddontinclude "\\dontinclude", and
      section \ref cmdverbatim "\\verbatim".

<hr>
\section cmdincludelineno \\includelineno <file-name>
@@ -1635,7 +1638,7 @@ void memcpy(void *dest, const void *src, size_t n);
  classes and members that are documented are automatically replaced by 
  links to the documentation. 

  \sa section \ref cmdendcode "\\endcode", section \ref cmdverbatim "\\verbatim"  
  \sa section \ref cmdendcode "\\endcode", section \ref cmdverbatim "\\verbatim".

<hr>
\section cmdcopydoc \\copydoc <link-object>
@@ -1805,7 +1808,7 @@ class C {};
  \addindex \\endverbatim
  Ends a block of text that was started with a \\verbatim command.
  
  \sa section \ref cmdverbatim "\\verbatim".
  \sa section \ref cmdendcode "\\endcode", section \ref cmdverbatim "\\verbatim".

<hr>
\section cmdendxmlonly \\endxmlonly
@@ -2020,6 +2023,8 @@ class C {};
  \warning Make sure you include a \\endverbatim command for each 
  \\verbatim command or the parser will get confused!

  \sa section \ref cmdcode "\\code", and section \ref cmdverbinclude "\\verbinclude".

<hr>
\section cmdxmlonly \\xmlonly

+15 −0
Original line number Diff line number Diff line
@@ -121,6 +121,7 @@ followed by the descriptions of the tags grouped by category.
\refitem cfg_generate_treeview GENERATE_TREEVIEW
\refitem cfg_generate_xml GENERATE_XML
\refitem cfg_graphical_hierarchy GRAPHICAL_HIERARCHY
\refitem cfg_group_graphs GROUP_GRAPHS
\refitem cfg_have_dot HAVE_DOT
\refitem cfg_hhc_location HHC_LOCATION
\refitem cfg_hide_friend_compounds HIDE_FRIEND_COMPOUNDS
@@ -202,6 +203,7 @@ followed by the descriptions of the tags grouped by category.
\refitem cfg_template_relations TEMPLATE_RELATIONS
\refitem cfg_toc_expand TOC_EXPAND
\refitem cfg_treeview_width TREEVIEW_WIDTH
\refitem cfg_uml_look UML_LOOK
\refitem cfg_use_windows_encoding USE_WINDOWS_ENCODING
\refitem cfg_verbatim_headers VERBATIM_HEADERS
\refitem cfg_warn_format WARN_FORMAT
@@ -1586,6 +1588,19 @@ TAGFILES = file1=loc1 "file2 = loc2" ... </pre>
 indirect implementation dependencies (inheritance, containment, and
 class references variables) of the class with other documented classes.

\anchor cfg_group_graphs
<dt>\c GROUP_GRAPHS <dd>
 \addindex GROUP_GRAPHS
 If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
 will generate a graph for groups, showing the direct groups dependencies.

\anchor cfg_uml_look
<dt>\c UML_LOOK <dd>
 \addindex UML_LOOK
 If the UML_LOOK tag is set to YES doxygen will generate inheritance and
 collaboration diagrams in a style similar to the OMG's Unified Modeling
 Language.

\anchor cfg_template_relations
<dt>\c TEMPLATE_RELATIONS <dd>
 \addindex TEMPLATE_RELATIONS
Loading