Add doc. to typeStartToken and typeEndToken functions

This commit is contained in:
Lucas Manuel Rodriguez 2013-09-29 16:08:07 -03:00
parent 1c513f330a
commit cb4abd6f16
1 changed files with 8 additions and 0 deletions

View File

@ -166,6 +166,10 @@ public:
/**
* Get type start token.
* The type start token doesn't account 'static' and 'const' qualifiers
* E.g.:
* static const int * const p = ...;
* type start token ^
* @return type start token
*/
const Token *typeStartToken() const {
@ -174,6 +178,10 @@ public:
/**
* Get type end token.
* The type end token doesn't account the forward 'const' qualifier
* E.g.:
* static const int * const p = ...;
* type end token ^
* @return type end token
*/
const Token *typeEndToken() const {