TuttleOFX  1
mainEntry.cpp
Go to the documentation of this file.
00001 #define OFXPLUGIN_VERSION_MAJOR 1
00002 #define OFXPLUGIN_VERSION_MINOR 0
00003 
00004 #include <tuttle/plugin/Plugin.hpp>
00005 #include "reader/ImageMagickReaderPluginFactory.hpp"
00006 #include "writer/ImageMagickWriterPluginFactory.hpp"
00007 
00008 namespace OFX {
00009 namespace Plugin {
00010 
00011 void getPluginIDs( OFX::PluginFactoryArray& ids )
00012 {
00013         mAppendPluginFactory( ids, tuttle::plugin::imagemagick::reader::ImageMagickReaderPluginFactory, "tuttle.imagemagickreader" );
00014         // Nothing for the moment
00015         // Is it possible to get dynamically the list of parameters of each writers ?
00016         //mAppendPluginFactory( ids, tuttle::plugin::imagemagick::writer::ImageMagickWriterPluginFactory, "tuttle.imagemagickwriter" );
00017 }
00018 
00019 }
00020 }