I have the following:

namespace foo {
class Attachment {
public:
    std::string& data();
    std::string const& data() const;
    void data( std::string& data );
};
}

I'm trying to link to it automatically via some simple documentation in a list:

/**
 * Does the following:
 * - Item 1
 * - Item 2 (Attachment::data() const)
 * - Item 3
 */

I am trying to link to the 2nd overload from the top inside the
Attachment class. However, doxygen does not turn this into a clickable
link when I generate HTML. What am I missing? Thanks in advance.

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to