View | Details | Raw Unified | Return to bug 2636
Collapse All | Expand All

(-)print-introspected-doxygen.cc (-1 / +32 lines)
505
}  // PrintAllAttributes ()
505
}  // PrintAllAttributes ()
506
506
507
507
508
void
509
PrintAllTypeIds (std::ostream & os)
510
{
511
  NS_LOG_FUNCTION_NOARGS ();
512
  os << commentStart << page << "All TypeIds\n"
513
     << std::endl;
514
  os << "This is a list of all" << reference << "TypeIds.  "
515
     << "For more information see the" << reference << "TypeId "
516
     << "section of this API documentation and the TypeId sections "
517
     << "in the Tutorial and Manual.\n"
518
     << std::endl;
519
520
  for (uint32_t i = 0; i < TypeId::GetRegisteredN (); ++i)
521
    {
522
      TypeId tid = TypeId::GetRegistered (i);
523
      if (tid.GetAttributeN () == 0 ||
524
	  tid.MustHideFromDocumentation ())
525
	{
526
	  continue;
527
	}
528
529
      os << boldStart << tid.GetName () << boldStop << breakHtmlOnly
530
	 << std::endl;
531
      
532
    }
533
  os << commentStop << std::endl;
534
535
}  // PrintAllTypeIds ()
536
537
538
508
/**
539
/**
509
 * Print the list of all global variables.
540
 * Print the list of all global variables.
510
 *
541
 *
1513
      std::cout << commentStop << std::endl;
1544
      std::cout << commentStop << std::endl;
1514
    }  // class documentation
1545
    }  // class documentation
1515
1546
1516
1547
  PrintAllTypeIds (std::cout);
1517
  PrintAllAttributes (std::cout);
1548
  PrintAllAttributes (std::cout);
1518
  PrintAllGlobals (std::cout);
1549
  PrintAllGlobals (std::cout);
1519
  PrintAllLogComponents (std::cout);
1550
  PrintAllLogComponents (std::cout);

Return to bug 2636