#include <page_magick.h>
Inheritance diagram for PluginImageCreateRepository:


Public Member Functions | |
| void | InstallPlugins (Plugin *) |
Definition at line 69 of file page_magick.h.
|
|
Definition at line 441 of file page_magick.cc. References Plugin::Find(), ImageCreate::IsUsable(), and GDKImageCreateRepository::Register(). Referenced by PageMagick::PageMagick(). 00442 {
00443 GDKImageCreate * ( *func ) ( int ) = ( GDKImageCreate * ( * ) ( int ) ) plugin->Find( "GetImageCreate" );
00444 if ( func != NULL )
00445 {
00446 int index = 0;
00447 GDKImageCreate *entry = func( index ++ );
00448 while ( entry != NULL )
00449 {
00450 if ( entry->IsUsable( ) )
00451 Register( entry );
00452 entry = func( index ++ );
00453 }
00454 }
00455 }
|
1.4.2