TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/plugin/ImageEffectGilPlugin.cpp
Go to the documentation of this file.
00001 #include "ImageEffectGilPlugin.hpp"
00002 
00003 #include <ofxsImageEffect.h>
00004 #include <ofxsMultiThread.h>
00005 
00006 #include <boost/gil/gil_all.hpp>
00007 
00008 namespace tuttle {
00009 namespace plugin {
00010 
00011 ImageEffectGilPlugin::ImageEffectGilPlugin( OfxImageEffectHandle handle )
00012 : OFX::ImageEffect( handle )
00013 {
00014         _clipSrc = fetchClip( kOfxImageEffectSimpleSourceClipName );
00015         _clipDst = fetchClip( kOfxImageEffectOutputClipName );
00016 }
00017 
00018 ImageEffectGilPlugin::~ImageEffectGilPlugin()
00019 {}
00020 
00021 }
00022 }