@@ -134,6 +134,8 @@ static bool handleReferencedByRelation(yyscan_t yyscanner,const QCString &, cons
134
134
static bool handleHideReferencedByRelation (yyscan_t yyscanner,const QCString &, const StringVector &);
135
135
static bool handleReferencesRelation (yyscan_t yyscanner,const QCString &, const StringVector &);
136
136
static bool handleHideReferencesRelation (yyscan_t yyscanner,const QCString &, const StringVector &);
137
+ static bool handleGroupgraph (yyscan_t yyscanner,const QCString &, const StringVector &);
138
+ static bool handleHideGroupgraph (yyscan_t yyscanner,const QCString &, const StringVector &);
137
139
static bool handleInternal (yyscan_t yyscanner,const QCString &, const StringVector &);
138
140
static bool handleStatic (yyscan_t yyscanner,const QCString &, const StringVector &);
139
141
static bool handlePure (yyscan_t yyscanner,const QCString &, const StringVector &);
@@ -227,10 +229,12 @@ static const std::map< std::string, DocCmdMap > docCmdMap =
227
229
{ " extends" , { &handleExtends, CommandSpacing::Invisible }},
228
230
{ " file" , { &handleFile, CommandSpacing::Invisible }},
229
231
{ " fn" , { &handleFn, CommandSpacing::Invisible }},
232
+ { " groupgraph" , { &handleGroupgraph, CommandSpacing::Invisible }},
230
233
{ " headerfile" , { &handleHeaderFile, CommandSpacing::Invisible }},
231
234
{ " hidecallergraph" , { &handleHideCallergraph, CommandSpacing::Invisible }},
232
235
{ " hidecallgraph" , { &handleHideCallgraph, CommandSpacing::Invisible }},
233
236
{ " hidedirectorygraph" , { &handleHideDirectoryGraph, CommandSpacing::Invisible }},
237
+ { " hidegroupgraph" , { &handleHideGroupgraph, CommandSpacing::Invisible }},
234
238
{ " hideincludedbygraph" , { &handleHideIncludedBygraph, CommandSpacing::Invisible }},
235
239
{ " hideincludegraph" , { &handleHideIncludegraph, CommandSpacing::Invisible }},
236
240
{ " hideinitializer" , { &handleHideInitializer, CommandSpacing::Invisible }},
@@ -3123,6 +3127,20 @@ static bool handleHideDirectoryGraph(yyscan_t yyscanner,const QCString &, const
3123
3127
return FALSE ;
3124
3128
}
3125
3129
3130
+ static bool handleGroupgraph (yyscan_t yyscanner,const QCString &, const StringVector &)
3131
+ {
3132
+ struct yyguts_t *yyg = (struct yyguts_t *)yyscanner;
3133
+ yyextra->current ->groupGraph = TRUE ; // ON
3134
+ return FALSE ;
3135
+ }
3136
+
3137
+ static bool handleHideGroupgraph (yyscan_t yyscanner,const QCString &, const StringVector &)
3138
+ {
3139
+ struct yyguts_t *yyg = (struct yyguts_t *)yyscanner;
3140
+ yyextra->current ->groupGraph = FALSE ; // OFF
3141
+ return FALSE ;
3142
+ }
3143
+
3126
3144
static bool handleQualifier (yyscan_t yyscanner,const QCString &cmd, const StringVector &)
3127
3145
{
3128
3146
struct yyguts_t *yyg = (struct yyguts_t *)yyscanner;
0 commit comments