TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.cpp
Go to the documentation of this file.
00001 #include "OfxhPlugin.hpp"
00002 
00003 namespace tuttle {
00004 namespace host {
00005 namespace ofx {
00006 
00007 OfxhPlugin::~OfxhPlugin() {}
00008 
00009 bool OfxhPlugin::operator==( const This& other ) const
00010 {
00011         // don't compare _binary
00012         if( OfxhPluginDesc::operator!=( other ) ||
00013             _index != other._index )
00014                 return false;
00015         return true;
00016 }
00017 
00018 }
00019 }
00020 }
00021