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