How do I make doxygen hide enum values in documenting each member? -


for example, have source code

enum colormodel {      color_model_rgb               = 0,      color_model_rgba              = 1,      color_model_grayscale         = 2,      color_model_grayscalealpha    = 3,      color_model_cmyk              = 4, }; 

and after generation, in enumerations section get:

enum    ecolormodel {      color_model_rgb = 0, color_model_rgba = 1, color_model_grayscale = 2, color_model_grayscalealpha = 3, color_model_cmyk = 4  } 

how can hide values just

enum    ecolormodel {      color_model_rgb,     color_model_rgba,     color_model_grayscale,     color_model_grayscalealpha,     color_model_cmyk, } 

set following in doxygen's configuration file:

max_initializer_lines = 0 

Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -