Doxygen with C# internal access modifier -


I am using the dosage to generate some API docs for a C # project. I have quite a few "internal" functionality in this project and do not want to produce these signatures in Doksian Generated HTML.

I have tried to enable HIDE_FRIEND_COMPOUNDS but it still results in internal sections highlighting in the documentation.

Does anyone know how to do this?

In response to Mac H, let's set these additional configuration parameters to do this work :

  # Prefetined tags can be used to specify one or more macro names that have been introduced to # preprocessor (similar to # GCC-D option) PREDEFINED = internal = private # If the EXTRACT_PRIVATE tag is set to Yes, then all private members of all classes are given ten Will be included in the document. EXTRACT_PRIVATE = No # If the ENABLE_PREPROCESSING tag is set to Yes (default) Doxygen will evaluate all the C-preprocessor instructions found in # sources and will contain # files ENABLE_PREPROCESSING = Yes # If the MACRO_EXPANSION tag is set to YES Doxygen , Then all the macro # names in the source code will expand. If there is no set (default) only conditional # will be compiled. To control macro expansion, EXPAND_ONLY_PREDEF can be set to Yes in # WAY. MACRO_EXPANSION = YES # If both EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are set to YES #, then the macro extension is limited to #modified specification with prefetined and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = Yes  

Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -