wayland/doc
Aaron Faanes 217909c18d doc: Create \comment alias for C-style comments
Since /* */ do not nest, documentation is forced to either use C++ style
// comments or some other foreign notation. This commit provides an alias
that allows C-style comments to be introduced in code blocks that support
aliases.

It should be noted that this macro will not work within \code blocks, as
Doxygen commands are ignored there. Instead, Doxygen's fenced code
blocks (created via ~~~) must be used for proper output. To demonstrate:

~~~
struct example_node {
        int id;
        \comment{Other members ...}
};
~~~

will roughly yield the following HTML (excluding syntax highlighting):

<pre>
struct example_node {
        int id;
        /* Other members ... */
};
</pre>
2013-09-21 11:29:08 -07:00
..
doxygen doc: Create \comment alias for C-style comments 2013-09-21 11:29:08 -07:00
man doc: Capitalize all Wayland occurrences 2013-04-04 16:57:07 -04:00
publican doc: Add a section on interface and protocol object versioning 2013-08-19 16:23:08 -07:00
Contributing doc: Add a small contributing guide 2013-06-18 01:29:01 -04:00
Makefile.am doc: Add a small contributing guide 2013-06-18 01:29:01 -04:00