>>> I am sure this is possible with Doxygen. In another project I have short >>> comments (i.e. titles) in *.h and detailed comments in *.cpp. This works >> in array initialization items, yes? > > Yes, in this method.
i meant _inside_ the initialization, ie: ev_item const items[] = { LFUN_ACCENT_ACUTE, "accent-acute", Noop, Layout /** * Detailed doc about the ACCENT_BREVE * **/ { LFUN_ACCENT_BREVE, "accent-breve", Noop, Layout { LFUN_ACCENT_CARON, "accent-caron", Noop, Layout }, > And in the .cpp: > > /** > * Detailed doc about the method... > * > **/ > void foo::bar() > {...} this seems to work only for the whole function, which i dont want as written in the previous mail. pavel