I have a simple question that I could not find while digging up Google.
I am transferring project documentation from phpDoc to Doxygen , but I don't know how to write @license and @copyright together.
In my concept, @copyright is for my "company" (but not real: P) and @license is the development method that I am developing: one of the many combinations of CreativeCommons, GNU, MIT, BSD, "licensed" ...
Based on Chrisโs response, you can use the command \parto create a block similar to a built-in command \copyright. For example, an alias like:
\par
\copyright
ALIASES += "license=@par License:\n"
:
/** My main function. \copyright Copyright 2012 Chris Enterprises. All rights reserved. \license This project is released under the GNU Public License. */ int main(void){ return 0; }
, \license {} . , , HTML.
\license
{}
, , doxygen . , \author \copyright .
\author
( ) , :
\copyright:
/** My main function. \copyright Copyright 2012 Chris Enterprises. All rights reserved. This project is released under the GNU Public License. */ int main(void){ return 0; }
HTML
, .
, HTML, ,
<dl class="section copyright"><dt>Copyright</dt><dd>Copyright 2012 Chris Enterprises. All rights reserved. This project is released under the GNU Public License. </dd></dl>
, , , license, copyright. ALIASES ALIASES doxygen
license
copyright
ALIASES
ALIASES += license{1}="<dl class=\"section copyright\"><dt>License</dt><dd>\1 </dd></dl>"
/** My main function. \copyright Copyright 2012 Chris Enterprises. All rights reserved. \license{This project is released under the GNU Public License.} */
, : \license{...} , \license . \copyright, , ALIASES .
\license{...}