
Naming Conventions
------------------

Class and function names are concatenated by ::, e.g. foo::bar

Functions outside of classes start with ::, e.g. ::classless_func



Specification
-------------

Look at the file test.class for an example.


Descriptions consist of comments starting with /** .


The (optional) detailed description of an element always comes first.


Then, the following tags may appear in any order:

- @see

  Starts a comma seperated list of references. Classes and functions which are
  parsed in the same run will be directly reachable via hyperlinks, other
  references will just be printed as given.

- @param $name

  Starts a parameter description. $name identifies the parameter (no leading &
  or default value must be specified)

- @return

  Starts the description of a return value.


All lines of a description are concatenated by a blank.

