TuttleOFX  1
mainEntry.cpp
Go to the documentation of this file.
00001 #define OFXPLUGIN_VERSION_MAJOR 1
00002 #define OFXPLUGIN_VERSION_MINOR 5
00003 
00004 #include <tuttle/plugin/Plugin.hpp>
00005 
00006 #include "reader/Jpeg2000ReaderPluginFactory.hpp"
00007 #include "writer/Jpeg2000WriterPluginFactory.hpp"
00008 
00009 namespace OFX {
00010 namespace Plugin {
00011 
00012 void getPluginIDs( OFX::PluginFactoryArray& ids )
00013 {
00014         mAppendPluginFactory( ids, tuttle::plugin::jpeg2000::reader::Jpeg2000ReaderPluginFactory, "tuttle.jpeg2000reader" );
00015         mAppendPluginFactory( ids, tuttle::plugin::jpeg2000::writer::Jpeg2000WriterPluginFactory, "tuttle.jpeg2000writer" );
00016 }
00017 
00018 }
00019 }