Hi,
i found a little problem with the Symbols browser. If I write the following typedef in one of my header files, afterwards the Symbols browser seems to be confused. Some constructors and destructors of classes in the same file are suddenly listed under "Global functions".
typedef enum ETerminalStates
{
eStateUnknown=-1, /**< noch nicht bekannt */
eStateInactive=0, /**< aktiviert/deaktiviert */
eStateOffline=1, /**< offline, nicht ansprechbar */
eStateOnline=2, /**< online */
eStateModemOk=3 /**< letzte Modemkommunikation OK */
} TTerminalStates;
But, if i write it like this (have a look to the last comment...) it works well.
(yes, I'm a docu freak...

)
typedef enum ETerminalStates
{
eStateUnknown=-1, /**< noch nicht bekannt */
eStateInactive=0, /**< aktiviert/deaktiviert */
eStateOffline=1, /**< offline, nicht ansprechbar */
eStateOnline=2, /**< online */
/** letzte Modemkommunikation OK */
eStateModemOk=3
} TTerminalStates;