I have noted that with Doxygen 1.2.8 the Parameters are written 2 times.
One time with the description following and one time without
I don't recall v1.2.7 to have this problem.
I love the jump functionality when you see the source code in HTML. If
you click on the function it jumps to the functon definition. But I also
noted that sometimes, in the case of overloading (like below), the wrong
function is jumped to.
Code examples below.
Thanks in advance.
Keep up the good work!
Next folowing the function definitions
--------------------------------------
/// Reads a double from the Skyscan registry location
(System or User)
/*! Dependend on m_bUserMode, we either read from the
System or User registry.
@return The double on success else the default
value
@param asProfile Base path in the
registry. \n e.g. "Skyscan-1074\\Profile\\"
@param asSection Subsection in the
registry. \n e.g. "Default"
@param asKey The key to read from.
\e.g. "MyKey"
@param aDefault The default double value
if the read failes or the key does not exist
\see m_bUserMode, m_sProfilePath, m_sProfileFile
*/
double ReadDouble(const string &asProfile, const string
&asSection, const string &asKey, double aDefault);
/// Reads a double from the Skyscan registry location
(System or User)
/*! Dependend on m_bUserMode, we either read from the
System or User registry. \n
Uses m_sProfilePath and m_sProfileFile as
destination..
@return The double on success else the default
value
@param asKey The key to read from.
\e.g. "MyKey"
@param aDefault The default double value
if the read failes or the key does not exist
\see m_bUserMode, m_sProfilePath, m_sProfileFile
*/
double ReadDouble(const string &asKey,double aDefault);
Next what Doxygen created
-------------------------
BOOL CSkyScanReg::WriteInt ( const string & asKey, =20
int aiValue ) =20
=20
Writes an integer to the Skyscan registry location (System or User).=20
Dependend on m_bUserMode, we either write to the System or User
registry.=20
Uses m_sProfilePath and m_sProfileFile as destination..=20
Returns:=20
TRUE on success=20
Parameters:=20
asKey The key to write to. \e.g. "MyKey" =20
aiValue The integer value to write =20
See also:=20
m_bUserMode, m_sProfilePath, m_sProfileFile=20
>>> Parameters: <<< double????????
>>> asKey <<< double????????
>>> aiValue <<< double????????=09
00062 {
00063 return WriteInt(m_sProfilePath,
m_sProfileFile,asKey,aiValue);
00064 }
=20
|