| 654 | } |
| 655 | |
| 656 | static void dumpEnums( Stream& stream ) |
| 657 | { |
| 658 | for( const EngineTypeInfo* type = EngineTypeInfo::getFirstType(); |
| 659 | type != NULL; type = type->getNextType() ) |
| 660 | if( type->isEnum() || type->isBitfield() ) |
| 661 | dumpEnum( stream, type ); |
| 662 | } |
| 663 | |
| 664 | static bool dumpEngineDocs( const char *outputFile ) |
| 665 | { |
no test coverage detected