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


Public Member Functions | |
| void | InstallPlugins (Plugin *) |
Definition at line 105 of file page_magick.h.
|
|
Definition at line 505 of file page_magick.cc. References Plugin::Find(), AudioTransition::IsUsable(), and GDKAudioTransitionRepository::Register(). Referenced by PageMagick::PageMagick(). 00506 {
00507 GDKAudioTransition * ( *func ) ( int ) = ( GDKAudioTransition * ( * ) ( int ) ) plugin->Find( "GetAudioTransition" );
00508 if ( func != NULL )
00509 {
00510 int index = 0;
00511 GDKAudioTransition *entry = func( index ++ );
00512 while ( entry != NULL )
00513 {
00514 if ( entry->IsUsable( ) )
00515 Register( entry );
00516 entry = func( index ++ );
00517 }
00518 }
00519 }
|
1.4.2