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/OpenImageIOReaderPluginFactory.hpp"
00006 #include "writer/OpenImageIOWriterPluginFactory.hpp"
00007 
00008 namespace OFX
00009 {
00010 namespace Plugin
00011 {
00012 void getPluginIDs( OFX::PluginFactoryArray& ids )
00013 {
00014         mAppendPluginFactory( ids, tuttle::plugin::openImageIO::reader::OpenImageIOReaderPluginFactory, "tuttle.oiioreader" );
00015         mAppendPluginFactory( ids, tuttle::plugin::openImageIO::writer::OpenImageIOWriterPluginFactory, "tuttle.oiiowriter" );
00016 }
00017 
00018 }
00019 }