I have an ObjectiveC class using some protocols. I use Doxygen to create documentation.
@interface MyView : UIView
< MyInterface1
, MyInterface2 >
...
But generated HMTL is
Inherits UIView.
How can I get the protocols used in this class and displayed in HTML export ?
Thanks!