Get DelphiCodeToDoc at SourceForge.net. Fast, secure and Free Open Source software downloads
http://delphi.developpez.com/
DelphiCodeToDoc
Free documentation tool for Delphi, with JavaDoc support.


Home page

SF project page

Get DCTD software

Download

See all releases

Translations

Third-party tools

Documentation

What is it ?

What's new?

Technical papers

JavaDoc Syntax

Support

FAQ

Mailing Lists

Discussion Forum

Feedback

Browse/Submit Bugs

Browse/Submit Features

Browse/Submit Support requests

Development

Get involved

History

Usefull Links

 

 

JavaDoc TAG @todo


@todo text
Adds a "Todo" subheading with the specified text to the generated documentation. Use this TAG the same way as the TODO feature in Delphi.

 

{*------------------------------------------------------------------------------
  Handle BDF Files

  BDFfont is a library to handle BDF font (Bitmap Distribution Format file)
  font with Delphi.
  This library will solve the lack of support for bitmap font on MS-Windows.
  A complete documentation and few examples are also available.
  Get last revision at : http://sourceforge.net/projects/bdffont/
  Copyright TridenT 2003 - Under GNU GPL licence

  @Author  TridenT
  @Todo    Handle exception from a file access error
-------------------------------------------------------------------------------}

unit u_BDFfont;
...