Commit d5c952f0 authored by dimitri's avatar dimitri
Browse files

Release-1.5.7.1-20081225

parent 752d21c1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.7.1-20081206
DOXYGEN Version 1.5.7.1-20081225

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

--------
Dimitri van Heesch (06 December 2008)
Dimitri van Heesch (25 December 2008)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.7.1_20081206
DOXYGEN Version 1.5.7.1_20081225

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) (06 December 2008)
Dimitri van Heesch (dimitri@stack.nl) (25 December 2008)
+1 −0
Original line number Diff line number Diff line
@@ -270,6 +270,7 @@ int main(int argc,char **argv)

  // check and finialize the configuration
  checkConfiguration();
  adjustConfiguration();

  // parse the files
  parseInput();
+2 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ Usage: $0 [--help] [--shared] [--static] [--release] [--debug]
          [--perl name] [--flex name] [--bison name] [--make name] 
          [--dot name] [--platform target] [--prefix dir] [--docdir dir] 
          [--install name] [--english-only] [----enable-langs list] 
          [--with-doxywizard]
          [--with-doxywizard] [--with-doxyapp]

Options: 

@@ -145,6 +145,7 @@ Options:
  			[default: $f_langs]
  --with-doxywizard     Build the GUI frontend for doxygen. This
                        requires Qt 3.3.x
  --with-doxyapp        Example showing how to embed doxygen in an application.

EOF
  test "$f_error" = y && exit 1
+71 −20
Original line number Diff line number Diff line
@@ -127,14 +127,14 @@ documentation:
\refitem cmdparam \\param
\refitem cmdpost \\post
\refitem cmdpre \\pre
\refitem cmd_php_only \\private (PHP only)
\refitem cmd_php_only \\privatesection (PHP only)
\refitem cmdprivate \\private
\refitem cmdprivate \\privatesection
\refitem cmdproperty \\property
\refitem cmd_php_only \\protected (PHP only)
\refitem cmd_php_only \\protectedsection (PHP only)
\refitem cmdprotected \\protected
\refitem cmdprotected \\protectedsection
\refitem cmdprotocol \\protocol
\refitem cmd_php_only \\public (PHP only)
\refitem cmd_php_only \\publicsection (PHP only)
\refitem cmdpublic \\public
\refitem cmdpublic \\publicsection
\refitem cmdref \\ref
\refitem cmdrelates \\relates
\refitem cmdrelatesalso \\relatesalso
@@ -576,14 +576,19 @@ doxygen. Unrecognized commands are treated as normal text.
  This can be useful when the programming language does not support 
  the concept of member functions natively (e.g. C).

  It is also possible to use this command together with
  \ref cmdpublic "\\public", \ref cmdprotected "\\protected" or
  \ref cmdprivate "\\private".
 
  The file \c manual.c in the example directory shows how to use this command.
  \htmlonly
  Click <a href="$(DOXYGEN_DOCDIR)/examples/manual/html/index.html">here</a> 
  for the corresponding HTML documentation that is generated by doxygen.
  \endhtmlonly

  \sa section \ref cmdextends "\\extends" and section
      \ref cmdmemberof "\\memberof"
  \sa sections \ref cmdextends "\\extends", \ref cmdimplements "\\implements",
      \ref cmdpublic "\\public", \ref cmdprotected "\\protected" and
      \ref cmdprivate "\\private".

<hr>
\section cmdname \\name (header)  
@@ -682,6 +687,25 @@ doxygen. Unrecognized commands are treated as normal text.
              \ref cmdsubsection "\\subsection", and section 
              \ref cmdref "\\ref".

<hr>
\section cmdprivate \\private

  \addindex \\private
  \addindex \\privatesection
  Indicates that the member documented in the comment block is private,
  i.e., should only be accessed by other members in the same class.

  Note that Doxygen automatically detects the protection level of members
  in object-oriented languages. This command is intended for use only when
  the language does not support the concept of protection level natively
  (e.g. C, PHP 4).

  For starting a section of private members, in a way similar to the
  "private:" class marker in C++, use \\privatesection.

  \sa sections \ref cmdmemberof "\\memberof", \ref cmdpublic "\\public",
      and \ref cmdprotected "\\protected".

<hr>
\section cmdproperty \\property (qualified property name)

@@ -692,6 +716,26 @@ doxygen. Unrecognized commands are treated as normal text.

  \sa section \ref cmdfn "\\fn" and \ref cmdvar "\\var".

<hr>
\section cmdprotected \\protected

  \addindex \\protected
  \addindex \\protectedsection
  Indicates that the member documented in the comment block is protected,
  i.e., should only be accessed by other members in the same or derived
  classes.

  Note that Doxygen automatically detects the protection level of members
  in object-oriented languages. This command is intended for use only when
  the language does not support the concept of protection level natively
  (e.g. C, PHP 4).

  For starting a section of protected members, in a way similar to the
  "protected:" class marker in C++, use \\protectedsection.

  \sa sections \ref cmdmemberof "\\memberof", \ref cmdpublic "\\public",
      and \ref cmdprivate "\\private".

<hr>
\section cmdprotocol \\protocol <name> [<header-file>] [<header-name>]

@@ -702,6 +746,25 @@ doxygen. Unrecognized commands are treated as normal text.

  \sa section \ref cmdclass "\\class".

<hr>
\section cmdpublic \\public

  \addindex \\public
  \addindex \\publicsection
  Indicates that the member documented in the comment block is public,
  i.e., can be accessed by any other class or function.

  Note that Doxygen automatically detects the protection level of members
  in object-oriented languages. This command is intended for use only when
  the language does not support the concept of protection level natively
  (e.g. C, PHP 4).

  For starting a section of public members, in a way similar to the
  "public:" class marker in C++, use \\publicsection.

  \sa sections \ref cmdmemberof "\\memberof", \ref cmdprotected "\\protected"
      and \ref cmdprivate "\\private".

<hr>
\section cmdrelates \\relates <name>

@@ -2369,18 +2432,6 @@ class Receiver
  character has to be escaped in some cases, because it is used to 
  prevent auto-linking to word that is also a documented class or struct. 

<hr>
\section cmd_php_only PHP only commands
For PHP files there are a number of additional commands, that can be
used inside classes to make members public, private, or protected even
though the language itself doesn't support this notion.

To mark a single item use one of \\private, \\protected, \\public.
For starting a section with a certain protection level use one of:
\\privatesection, \\protectedsection, \\publicsection.
The latter commands are similar to 
"private:", "protected:", and "public:" in C++.

<h2>\htmlonly <center> --- \endhtmlonly 
    Commands included for Qt compatibility
    \htmlonly --- </center>\endhtmlonly</h2>
Loading