@@ -1360,16 +1360,16 @@ void ClassDefImpl::writeBriefDescription(OutputList &ol,bool exampleFlag) const
1360
1360
{
1361
1361
ol.startParagraph ();
1362
1362
ol.pushGeneratorState ();
1363
- ol.disableAllBut (OutputGenerator ::Man);
1363
+ ol.disableAllBut (OutputType ::Man);
1364
1364
ol.writeString (" - " );
1365
1365
ol.popGeneratorState ();
1366
1366
ol.generateDoc (briefFile (),briefLine (),this ,0 ,
1367
1367
briefDescription (),TRUE ,FALSE ,QCString (),
1368
1368
TRUE ,FALSE ,Config_getBool (MARKDOWN_SUPPORT));
1369
1369
ol.pushGeneratorState ();
1370
- ol.disable (OutputGenerator ::RTF);
1370
+ ol.disable (OutputType ::RTF);
1371
1371
ol.writeString (" \n " );
1372
- ol.enable (OutputGenerator ::RTF);
1372
+ ol.enable (OutputType ::RTF);
1373
1373
ol.popGeneratorState ();
1374
1374
1375
1375
if (hasDetailedDescription () || exampleFlag)
@@ -1403,7 +1403,7 @@ void ClassDefImpl::writeDetailedDocumentationBody(OutputList &ol) const
1403
1403
!documentation ().isEmpty ())
1404
1404
{
1405
1405
ol.pushGeneratorState ();
1406
- ol.disable (OutputGenerator ::Html);
1406
+ ol.disable (OutputType ::Html);
1407
1407
ol.writeString (" \n\n " );
1408
1408
ol.popGeneratorState ();
1409
1409
}
@@ -1448,20 +1448,20 @@ void ClassDefImpl::writeDetailedDescription(OutputList &ol, const QCString &/*pa
1448
1448
if (hasDetailedDescription () || exampleFlag)
1449
1449
{
1450
1450
ol.pushGeneratorState ();
1451
- ol.disable (OutputGenerator ::Html);
1451
+ ol.disable (OutputType ::Html);
1452
1452
ol.writeRuler ();
1453
1453
ol.popGeneratorState ();
1454
1454
1455
1455
ol.pushGeneratorState ();
1456
- ol.disableAllBut (OutputGenerator ::Html);
1456
+ ol.disableAllBut (OutputType ::Html);
1457
1457
ol.writeAnchor (QCString (),anchor.isEmpty () ? QCString (" details" ) : anchor);
1458
1458
ol.popGeneratorState ();
1459
1459
1460
1460
if (!anchor.isEmpty ())
1461
1461
{
1462
1462
ol.pushGeneratorState ();
1463
- ol.disable (OutputGenerator ::Html);
1464
- ol.disable (OutputGenerator ::Man);
1463
+ ol.disable (OutputType ::Html);
1464
+ ol.disable (OutputType ::Man);
1465
1465
ol.writeAnchor (getOutputFileBase (),anchor);
1466
1466
ol.popGeneratorState ();
1467
1467
}
@@ -1513,19 +1513,19 @@ QCString ClassDefImpl::generatedFromFiles() const
1513
1513
void ClassDefImpl::showUsedFiles (OutputList &ol) const
1514
1514
{
1515
1515
ol.pushGeneratorState ();
1516
- ol.disable (OutputGenerator ::Man);
1516
+ ol.disable (OutputType ::Man);
1517
1517
1518
1518
1519
1519
ol.writeRuler ();
1520
1520
ol.pushGeneratorState ();
1521
- ol.disableAllBut (OutputGenerator ::Docbook);
1521
+ ol.disableAllBut (OutputType ::Docbook);
1522
1522
ol.startParagraph ();
1523
1523
ol.parseText (generatedFromFiles ());
1524
1524
ol.endParagraph ();
1525
1525
ol.popGeneratorState ();
1526
- ol.disable (OutputGenerator ::Docbook);
1526
+ ol.disable (OutputType ::Docbook);
1527
1527
ol.parseText (generatedFromFiles ());
1528
- ol.enable (OutputGenerator ::Docbook);
1528
+ ol.enable (OutputType ::Docbook);
1529
1529
1530
1530
bool first=TRUE ;
1531
1531
for (const auto &fd : m_impl->files )
@@ -1551,7 +1551,7 @@ void ClassDefImpl::showUsedFiles(OutputList &ol) const
1551
1551
1552
1552
// for HTML
1553
1553
ol.pushGeneratorState ();
1554
- ol.disableAllBut (OutputGenerator ::Html);
1554
+ ol.disableAllBut (OutputType ::Html);
1555
1555
if (fd->generateSourceFile ())
1556
1556
{
1557
1557
ol.writeObjectLink (QCString (),fd->getSourceFileBase (),QCString (),fname);
@@ -1568,7 +1568,7 @@ void ClassDefImpl::showUsedFiles(OutputList &ol) const
1568
1568
1569
1569
// for other output formats
1570
1570
ol.pushGeneratorState ();
1571
- ol.disable (OutputGenerator ::Html);
1571
+ ol.disable (OutputType ::Html);
1572
1572
if (fd->isLinkable ())
1573
1573
{
1574
1574
ol.writeObjectLink (fd->getReference (),fd->getOutputFileBase (),QCString (),fname);
@@ -1624,7 +1624,7 @@ void ClassDefImpl::writeInheritanceGraph(OutputList &ol) const
1624
1624
else if (!inheritanceGraph.isTrivial ())
1625
1625
{
1626
1626
ol.pushGeneratorState ();
1627
- ol.disable (OutputGenerator ::Man);
1627
+ ol.disable (OutputType ::Man);
1628
1628
ol.startDotGraph ();
1629
1629
ol.parseText (theTranslator->trClassDiagram (displayName ()));
1630
1630
ol.endDotGraph (inheritanceGraph);
@@ -1637,17 +1637,17 @@ void ClassDefImpl::writeInheritanceGraph(OutputList &ol) const
1637
1637
{
1638
1638
ClassDiagram diagram (this ); // create a diagram of this class.
1639
1639
ol.startClassDiagram ();
1640
- ol.disable (OutputGenerator ::Man);
1640
+ ol.disable (OutputType ::Man);
1641
1641
ol.parseText (theTranslator->trClassDiagram (displayName ()));
1642
- ol.enable (OutputGenerator ::Man);
1642
+ ol.enable (OutputType ::Man);
1643
1643
ol.endClassDiagram (diagram,getOutputFileBase (),displayName ());
1644
1644
renderDiagram = TRUE ;
1645
1645
}
1646
1646
1647
1647
if (renderDiagram) // if we already show the inheritance relations graphically,
1648
1648
// then hide the text version
1649
1649
{
1650
- ol.disableAllBut (OutputGenerator ::Man);
1650
+ ol.disableAllBut (OutputType ::Man);
1651
1651
}
1652
1652
1653
1653
if (!m_impl->inherits .empty ())
@@ -1724,7 +1724,7 @@ void ClassDefImpl::writeCollaborationGraph(OutputList &ol) const
1724
1724
if (!usageImplGraph.isTrivial ())
1725
1725
{
1726
1726
ol.pushGeneratorState ();
1727
- ol.disable (OutputGenerator ::Man);
1727
+ ol.disable (OutputType ::Man);
1728
1728
ol.startDotGraph ();
1729
1729
ol.parseText (theTranslator->trCollaborationDiagram (displayName ()));
1730
1730
ol.endDotGraph (usageImplGraph);
@@ -1913,10 +1913,10 @@ void ClassDefImpl::writeIncludeFiles(OutputList &ol) const
1913
1913
else
1914
1914
ol.docify (" <" );
1915
1915
ol.pushGeneratorState ();
1916
- ol.disable (OutputGenerator ::Html);
1916
+ ol.disable (OutputType ::Html);
1917
1917
ol.docify (nm);
1918
- ol.disableAllBut (OutputGenerator ::Html);
1919
- ol.enable (OutputGenerator ::Html);
1918
+ ol.disableAllBut (OutputType ::Html);
1919
+ ol.enable (OutputType ::Html);
1920
1920
if (m_impl->incInfo ->fileDef )
1921
1921
{
1922
1922
ol.writeObjectLink (QCString (),m_impl->incInfo ->fileDef ->includeName (),QCString (),nm);
@@ -1971,7 +1971,7 @@ void ClassDefImpl::startMemberDocumentation(OutputList &ol) const
1971
1971
// printf("%s: ClassDefImpl::startMemberDocumentation()\n",qPrint(name()));
1972
1972
if (Config_getBool (SEPARATE_MEMBER_PAGES))
1973
1973
{
1974
- ol.disable (OutputGenerator ::Html);
1974
+ ol.disable (OutputType ::Html);
1975
1975
Doxygen::suppressDocWarnings = TRUE ;
1976
1976
}
1977
1977
}
@@ -1981,7 +1981,7 @@ void ClassDefImpl::endMemberDocumentation(OutputList &ol) const
1981
1981
// printf("%s: ClassDefImpl::endMemberDocumentation()\n",qPrint(name()));
1982
1982
if (Config_getBool (SEPARATE_MEMBER_PAGES))
1983
1983
{
1984
- ol.enable (OutputGenerator ::Html);
1984
+ ol.enable (OutputType ::Html);
1985
1985
Doxygen::suppressDocWarnings = FALSE ;
1986
1986
}
1987
1987
}
@@ -2009,7 +2009,7 @@ void ClassDefImpl::endMemberDeclarations(OutputList &ol) const
2009
2009
void ClassDefImpl::writeAuthorSection (OutputList &ol) const
2010
2010
{
2011
2011
ol.pushGeneratorState ();
2012
- ol.disableAllBut (OutputGenerator ::Man);
2012
+ ol.disableAllBut (OutputType ::Man);
2013
2013
ol.writeString (" \n " );
2014
2014
ol.startGroupHeader ();
2015
2015
ol.parseText (theTranslator->trAuthor (TRUE ,TRUE ));
@@ -2022,7 +2022,7 @@ void ClassDefImpl::writeAuthorSection(OutputList &ol) const
2022
2022
void ClassDefImpl::writeSummaryLinks (OutputList &ol) const
2023
2023
{
2024
2024
ol.pushGeneratorState ();
2025
- ol.disableAllBut (OutputGenerator ::Html);
2025
+ ol.disableAllBut (OutputType ::Html);
2026
2026
bool first=TRUE ;
2027
2027
SrcLangExt lang = getLanguage ();
2028
2028
@@ -2195,7 +2195,7 @@ void ClassDefImpl::writeInlineDocumentation(OutputList &ol) const
2195
2195
2196
2196
// part 1a
2197
2197
ol.pushGeneratorState ();
2198
- ol.disableAllBut (OutputGenerator ::Html);
2198
+ ol.disableAllBut (OutputType ::Html);
2199
2199
{ // only HTML only
2200
2200
ol.writeAnchor (QCString (),anchor ());
2201
2201
ol.startMemberDoc (QCString (),QCString (),anchor (),name (),1 ,1 ,FALSE );
@@ -2210,16 +2210,16 @@ void ClassDefImpl::writeInlineDocumentation(OutputList &ol) const
2210
2210
2211
2211
// part 1b
2212
2212
ol.pushGeneratorState ();
2213
- ol.disable (OutputGenerator ::Html);
2214
- ol.disable (OutputGenerator ::Man);
2213
+ ol.disable (OutputType ::Html);
2214
+ ol.disable (OutputType ::Man);
2215
2215
{ // for LaTeX/RTF only
2216
2216
ol.writeAnchor (getOutputFileBase (),anchor ());
2217
2217
}
2218
2218
ol.popGeneratorState ();
2219
2219
2220
2220
// part 1c
2221
2221
ol.pushGeneratorState ();
2222
- ol.disable (OutputGenerator ::Html);
2222
+ ol.disable (OutputType ::Html);
2223
2223
{
2224
2224
// for LaTeX/RTF/Man
2225
2225
ol.startGroupHeader (1 );
@@ -2297,7 +2297,7 @@ void ClassDefImpl::writeInlineDocumentation(OutputList &ol) const
2297
2297
2298
2298
// part 3: close the block
2299
2299
ol.pushGeneratorState ();
2300
- ol.disableAllBut (OutputGenerator ::Html);
2300
+ ol.disableAllBut (OutputType ::Html);
2301
2301
{ // HTML only
2302
2302
ol.endIndent ();
2303
2303
}
@@ -2314,7 +2314,7 @@ void ClassDefImpl::writeMoreLink(OutputList &ol,const QCString &anchor) const
2314
2314
2315
2315
// HTML only
2316
2316
ol.pushGeneratorState ();
2317
- ol.disableAllBut (OutputGenerator ::Html);
2317
+ ol.disableAllBut (OutputType ::Html);
2318
2318
ol.docify (" " );
2319
2319
ol.startTextLink (getOutputFileBase (),
2320
2320
anchor.isEmpty () ? QCString (" details" ) : anchor);
@@ -2326,23 +2326,23 @@ void ClassDefImpl::writeMoreLink(OutputList &ol,const QCString &anchor) const
2326
2326
{
2327
2327
ol.pushGeneratorState ();
2328
2328
// LaTeX + RTF
2329
- ol.disable (OutputGenerator ::Html);
2330
- ol.disable (OutputGenerator ::Man);
2331
- ol.disable (OutputGenerator ::Docbook);
2329
+ ol.disable (OutputType ::Html);
2330
+ ol.disable (OutputType ::Man);
2331
+ ol.disable (OutputType ::Docbook);
2332
2332
if (!(usePDFLatex && pdfHyperlinks))
2333
2333
{
2334
- ol.disable (OutputGenerator ::Latex);
2334
+ ol.disable (OutputType ::Latex);
2335
2335
}
2336
2336
if (!rtfHyperlinks)
2337
2337
{
2338
- ol.disable (OutputGenerator ::RTF);
2338
+ ol.disable (OutputType ::RTF);
2339
2339
}
2340
2340
ol.docify (" " );
2341
2341
ol.startTextLink (getOutputFileBase (), anchor);
2342
2342
ol.parseText (theTranslator->trMore ());
2343
2343
ol.endTextLink ();
2344
2344
// RTF only
2345
- ol.disable (OutputGenerator ::Latex);
2345
+ ol.disable (OutputType ::Latex);
2346
2346
ol.writeString (" \\ par" );
2347
2347
ol.popGeneratorState ();
2348
2348
}
@@ -2480,7 +2480,7 @@ void ClassDefImpl::addClassAttributes(OutputList &ol) const
2480
2480
if (getLanguage ()==SrcLangExt_IDL && isPublished ()) sl.push_back (" published" );
2481
2481
2482
2482
ol.pushGeneratorState ();
2483
- ol.disableAllBut (OutputGenerator ::Html);
2483
+ ol.disableAllBut (OutputType ::Html);
2484
2484
if (!sl.empty ())
2485
2485
{
2486
2486
ol.startLabels ();
@@ -2752,7 +2752,7 @@ void ClassDefImpl::writeMemberPages(OutputList &ol) const
2752
2752
// /////////////////////////////////////////////////////////////////////////
2753
2753
2754
2754
ol.pushGeneratorState ();
2755
- ol.disableAllBut (OutputGenerator ::Html);
2755
+ ol.disableAllBut (OutputType ::Html);
2756
2756
2757
2757
for (const auto &ml : m_impl->memberLists )
2758
2758
{
@@ -2842,7 +2842,7 @@ void ClassDefImpl::writeMemberList(OutputList &ol) const
2842
2842
if (m_impl->allMemberNameInfoLinkedMap .empty () || cOpt) return ;
2843
2843
// only for HTML
2844
2844
ol.pushGeneratorState ();
2845
- ol.disableAllBut (OutputGenerator ::Html);
2845
+ ol.disableAllBut (OutputType ::Html);
2846
2846
2847
2847
HighlightedItem hli;
2848
2848
if (sliceOpt)
@@ -4447,7 +4447,7 @@ void ClassDefImpl::writeInheritedMemberDeclarations(OutputList &ol,ClassDefSet &
4447
4447
const ClassDef *inheritedFrom,bool invert,bool showAlways) const
4448
4448
{
4449
4449
ol.pushGeneratorState ();
4450
- ol.disableAllBut (OutputGenerator ::Html);
4450
+ ol.disableAllBut (OutputType ::Html);
4451
4451
int count = countMembersIncludingGrouped (lt,inheritedFrom,FALSE );
4452
4452
bool process = count>0 ;
4453
4453
// printf("%s: writeInheritedMemberDec: lt=%d process=%d invert=%d always=%d\n",
0 commit comments