[Doxygen-develop] "using" instead of "typedef"
Brought to you by:
dimitri
From: Marcel H. <ke...@co...> - 2012-04-04 14:40:14
|
hello everyone, with c++11 a "new" using declartion was introduced. http://en.wikipedia.org/wiki/C%2B%2B11#Alias_templates Something like this: using HandlerPtr = std::shared_ptr<Handler>; instead of typedef std::shared_ptr<Handler> HandlerPtr; However, Doxygen does not support this and I want to ask if you may implement this. Regards, Marcel Hellwig |