File: ok_helpinsight_comments.pas

package info (click to toggle)
pasdoc 0.16.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,572 kB
  • sloc: pascal: 28,894; javascript: 7,665; xml: 2,597; makefile: 523; sh: 417
file content (18 lines) | stat: -rw-r--r-- 879 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ Test of handling help insight comments, in the form "/// <tag> ... </tag>".
  See http://delphi.wikia.com/wiki/Help_insight,
  example snippet with @link(Parse) function is straight from there.
  See https://sourceforge.net/tracker/?func=detail&atid=304213&aid=3485263&group_id=4213. }
unit ok_helpinsight_comments;
interface

/// <summary>parses the commandline</summary>
///   <param name="CmdLine"> is a string giving the commandline.
///                          NOTE: Do not pass System.CmdLine since it contains the
///                          program's name as the first "parameter".
///                          If you want to parse the commandline as passed by
///                          windows, call the overloaded Parse method without
///                          parameters. It handles this.</param>
procedure Parse(const _CmdLine: string);

implementation
end.