/**** * * Class Images has one method to dump the .gif files that are referenced from * within the generated HTML for the object hierarchy. These images have been * converted to ASCII hex form using hexdump, and are stored as raw data * embedded within the code. The three image files are dumped along with * generated HTML files, and can thus be referenced directly from within HTML. * */ #ifndef imagesIncluded #define imagesIncluded class Images { public: Images(); void Write(); /* * Do the deed using a raw fwrite. */ protected: const char* component_symbol_file; const char* inheritance_symbol_file; const char* small_black_arrow_file; }; #endif