@module tag
This tag sets module ownership for the documented symbol.
Module names must be declared by using the @moduledef tag before use with this tag.
When this tag is not used, declarations inherit module association from the parent scope or header file.
Syntax [link]
@module {<module name>}
Examples [link]
Associate module with a header file:
#ifndef FOO_HH_
#define FOO_HH_
/**
@file
@module {Foo}
This header file ...
*/
Associate module with a class:
/**
@module {Foo}
This class ...
*/
class {